MediaWiki:Common.js: Difference between revisions

From BEASTX Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 3: Line 3:
$(function () {
$(function () {


$('#mw-beastx-pitchcalc').html(
$('#mw-beastx-pitchcalc').html('<input type="button" onclick="myFunction()" value="Calculate">');
'<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>');
}());
}());
function myFunction() {
$('#blabla').html('Hello');
};

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