MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
Shornstein (talk | contribs) Created page with "→Any JavaScript here will be loaded for all users on every page load.: $(function () { $('#mw-beastx-pitchcalc').html('any HTML'); }());" |
Shornstein (talk | contribs) No edit summary |
||
| Line 2: | Line 2: | ||
$(function () { | $(function () { | ||
$('#mw-beastx-pitchcalc').html(' | |||
$('#mw-beastx-pitchcalc').html( | |||
'<form id="frm1"> | |||
First name: <input type="text" name="fname"><br> | |||
Last name: <input type="text" name="lname"><br><br> | |||
<input type="button" onclick="myFunction()" value="Submit"> | |||
</form>'); | |||
}()); | }()); | ||
Revision as of 11:28, 3 June 2020
/* Any JavaScript here will be loaded for all users on every page load. */
$(function () {
$('#mw-beastx-pitchcalc').html(
'<form id="frm1">
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br><br>
<input type="button" onclick="myFunction()" value="Submit">
</form>');
}());