Santa Fe Institute Collaboration Platform

Thermodynamics of Computation

Difference between revisions of "MediaWiki:Common.js"

From Thermodynamics of Computation
Line 8: Line 8:
 
   $('input[name="Reference Material Query ABC[index]"], input[name="Reference Material Query[index]"]').each(function(){
 
   $('input[name="Reference Material Query ABC[index]"], input[name="Reference Material Query[index]"]').each(function(){
 
         $(this).on('change', function() {
 
         $(this).on('change', function() {
         $(this).parent().css('color', '#36c');  
+
         $(this).parent().css('color', '#36c').css('font-weight', 'bold');  
 
         var $form = $(this).closest('form');
 
         var $form = $(this).closest('form');
 
         $form.find('input[type=submit]').click();
 
         $form.find('input[type=submit]').click();

Revision as of 12:22, November 30, 2018

/* Any JavaScript here will be loaded for all users on every page load. */

$(document).ready(function() {
    runQueryOnABCChange()
});

function runQueryOnABCChange(){
  $('input[name="Reference Material Query ABC[index]"], input[name="Reference Material Query[index]"]').each(function(){
        $(this).on('change', function() {
        $(this).parent().css('color', '#36c').css('font-weight', 'bold'); 
        var $form = $(this).closest('form');
        $form.find('input[type=submit]').click();
     });
  });
}