Difference between revisions of "MediaWiki:Common.js"

From BEASTX Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 
/* Any JavaScript here will be loaded for all users on every page load. */
 
/* Any JavaScript here will be loaded for all users on every page load. */
 +
 +
var test = "";
  
 
$(function () {
 
$(function () {
 
+
test = $('#bllength').value;
 
$('#mw-beastx-pitchcalc').html('<input type="button" onclick="myFunction()" value="Calculate">');
 
$('#mw-beastx-pitchcalc').html('<input type="button" onclick="myFunction()" value="Calculate">');
 
}());
 
}());
Line 9: Line 11:
 
function myFunction() {
 
function myFunction() {
 
var length = $('#bllength').value;
 
var length = $('#bllength').value;
$('#result').html(length);
+
$('#result').html(test);
 
};
 
};

Revision as of 12:02, 3 June 2020

/* Any JavaScript here will be loaded for all users on every page load. */

var test = "";

$(function () {
test = $('#bllength').value;
	$('#mw-beastx-pitchcalc').html('<input type="button" onclick="myFunction()" value="Calculate">');
}());


function myFunction() {
var length = $('#bllength').value;
$('#result').html(test);
};