/* Any JavaScript here will be loaded for all users on every page load. */
$(function () {
var myElement = document.getElementById('displayText');
myElement.innerHTML = 'any HTML';
}());
$(function myFunction() {
var newInput = document.createElement("INPUT");
newInput.id = 'dropdown';
newInput.setAttribute("list", "viscosity");
document.getElementById("dropdown").appendChild(newInput);
var newDataList = document.createElement("DATALIST");
newDataList.setAttribute("id", "viscosity");
document.getElementById("dropdown").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);
}());