Difference between revisions of "MediaWiki:Common.js"
Line 8: | Line 8: | ||
$(function () { | $(function () { | ||
− | var | + | var newInput = document.createElement("INPUT"); |
− | + | newInput.id = 'dropdown'; | |
− | + | newInput.setAttribute("list", "viscosity"); | |
− | + | document.getElementById("myForm").appendChild(newInput); | |
− | var | + | |
− | + | var newDataList = document.createElement("DATALIST"); | |
− | + | newDataList.setAttribute("id", "viscosity"); | |
− | + | document.getElementById("myForm").appendChild(newDataList); | |
+ | |||
var newViscosity = function (viscosity) { | var newViscosity = function (viscosity) { | ||
− | var newOption = document.createElement( | + | var newOption = document.createElement("OPTION"); |
− | + | newOption.setAttribute("value", viscosity); | |
− | + | document.getElementById("viscosity").appendChild(newOption); | |
}; | }; | ||
− | newViscosity(10) | + | |
− | newViscosity(100) | + | newViscosity(10); |
− | newViscosity(1000) | + | newViscosity(100); |
+ | newViscosity(1000); | ||
}()); | }()); |
Revision as of 21:18, 19 February 2019
/* Any JavaScript here will be loaded for all users on every page load. */ $(function () { var myElement = document.getElementById('displayText'); myElement.innerHTML = 'any HTML'; }()); $(function () { var newInput = document.createElement("INPUT"); newInput.id = 'dropdown'; newInput.setAttribute("list", "viscosity"); document.getElementById("myForm").appendChild(newInput); var newDataList = document.createElement("DATALIST"); newDataList.setAttribute("id", "viscosity"); document.getElementById("myForm").appendChild(newDataList); var newViscosity = function (viscosity) { var newOption = document.createElement("OPTION"); newOption.setAttribute("value", viscosity); document.getElementById("viscosity").appendChild(newOption); }; newViscosity(10); newViscosity(100); newViscosity(1000); }());