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 9: | Line 9: | ||
function myFunction() { | function myFunction() { | ||
textinput .value = "Hello"; | textinput.value = "Hello"; | ||
}; | }; | ||
Revision as of 12:19, 3 June 2020
/* Any JavaScript here will be loaded for all users on every page load. */
var textinput = null;
$(function () {
textinput = $('#mw-bllength');
$('#mw-beastx-pitchcalc').html('<input type="button" id="myButton" onclick="myFunction()" value="Calculate">');
}());
function myFunction() {
textinput.value = "Hello";
};