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() { | ||
$('# | $('#result').html('Hello'); | ||
}; | }; | ||
Revision as of 11:50, 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() {
$('#result').html('Hello');
};