Difference between revisions of "MediaWiki:Common.js"

From BEASTX Wiki
Jump to navigation Jump to search
Line 7: Line 7:
  
 
function myFunction() {
 
function myFunction() {
$('#mw-beastx-pitchcalc').html('Hello');
+
$('#bllength').value = 10;
 
};
 
};

Revision as of 12:11, 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() {
$('#bllength').value = 10;
};