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