MediaWiki:Common.js: Difference between revisions

From BEASTX Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 14: Line 14:
       nBlLength = nBlLength + 1;
       nBlLength = nBlLength + 1;


       document.getElementById("mw-bllength").value = nBlLength ;
       document.getElementById("result").html(nBlLength);
}
}
};
};

Revision as of 12:43, 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 + 1;

      document.getElementById("result").html(nBlLength);
}
};