Difference between revisions of "MediaWiki:Common.js"

From BEASTX Wiki
Jump to navigation Jump to search
(Created page with "→‎Any JavaScript here will be loaded for all users on every page load.: $(function () { $('#mw-beastx-pitchcalc').html('any HTML'); }());")
 
Line 2: Line 2:
  
 
$(function () {
 
$(function () {
$('#mw-beastx-pitchcalc').html('any 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>');
}());