MediaWiki:Common.js: Difference between revisions

From BEASTX Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 7: Line 7:


function myFunction() {
function myFunction() {
$('#bllength').value = 10;
$('#mw-bllength').value = 10;
};
};

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