Difference between revisions of "MediaWiki:Common.js"

From BEASTX Wiki
Jump to navigation Jump to search
Line 4: Line 4:
  
 
$('#mw-beastx-pitchcalc').html('<input type="button" onclick="myFunction()" value="Calculate">');
 
$('#mw-beastx-pitchcalc').html('<input type="button" onclick="myFunction()" value="Calculate">');
}());
 
 
  
 
function myFunction() {
 
function myFunction() {
Line 12: Line 10:
 
   $('#result').html(length);
 
   $('#result').html(length);
 
};
 
};
 +
}());

Revision as of 12:08, 3 June 2020

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

$(function () {

	$('#mw-beastx-pitchcalc').html('<input type="button" onclick="myFunction()" value="Calculate">');

function myFunction() {
  var length = Number($('#bllength').value);
length = length + 1;
  $('#result').html(length);
};
}());