Difference between revisions of "MediaWiki:Common.js"

From BEASTX Wiki
Jump to navigation Jump to search
Line 12: Line 12:
 
{     
 
{     
 
       var nBlLength = Number(document.getElementById("mw-bllength").value);
 
       var nBlLength = Number(document.getElementById("mw-bllength").value);
       nBlLength = nBlLength * 0.104671;
+
       nBlLength = nBlLength * 0.104528;
  
 
       $('#mw-result').html("Distance: " + nBlLength + "mm");
 
       $('#mw-result').html("Distance: " + nBlLength + "mm");
 
}
 
}
 
};
 
};

Revision as of 13:04, 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 nBlLength = Number(document.getElementById("mw-bllength").value);
      nBlLength = nBlLength * 0.104528;

      $('#mw-result').html("Distance: " + nBlLength + "mm");
}
};