MediaWiki:Common.js: Difference between revisions

From BEASTX Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 12: Line 12:
{
{
       var bladelength = document.getElementById("mw-bllength");
       var bladelength = document.getElementById("mw-bllength");
bladelength.value = bladelength.value + 1;
var nBlLength = Number(bladelength.value);
nBlLength = nBlLength + 1;
bladelength.value = nBlLength ;


}
}
};
};

Revision as of 12:41, 3 June 2020

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

var textinput = null;

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

function myFunction() {
if (textinput != null)
{
      var bladelength = document.getElementById("mw-bllength");
var nBlLength = Number(bladelength.value);
nBlLength = nBlLength + 1;
bladelength.value = nBlLength ;

}
};