MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
Shornstein (talk | contribs) No edit summary |
Shornstein (talk | contribs) No edit summary |
||
| Line 8: | Line 8: | ||
function myFunction() { | function myFunction() { | ||
var length = $('#bllength').value; | var length = Number($('#bllength').value); | ||
length = length + 1; | |||
$('#result').html(length); | $('#result').html(length); | ||
}; | }; | ||
Revision as of 12:07, 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);
};