MediaWiki:Common.js
From Necroxia Origin
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
/* Any JavaScript here will be loaded for all users on every page load. */ $("#testdiv").each(function() { var parent = $(this); //var inputs = ['currentRoom', 'currentCount', 'answerNumber']; var inputs = [ ['currentRoom', 1, 32, 1], ['currentCount', 0, 999, 0], ['answerNumber', 31, 93, 77] ]; //var d = document.createElement('div'); for (i = 0; i < inputs.length; i++) { $(this).append("<input type='number' id='" + inputs[i][1] + "' name='"+inputs[i][1]+"' min='"+inputs[i][2]+"' max='"+inputs[i][3]+"' value='"+inputs[i][4]+"' maxLength='4' style='width:70px'/>"); } $(this).append("<button onclick='getPossibleTeleports()'>getChance</button>"); var currentRoom = $('#currentRoom').val(); $(this).append("<br>"+currentRoom); $(this).append("<br> " + $("input[id=currentRoom]").value); }); function getPossibleTeleports() { var currentRoom = $('#currentRoom').val(); $(parent).append("<br>"+currentRoom); }