Difference between revisions of "MediaWiki:Common.js"

From UMaine SECS Numerical Modeling Laboratory
Jump to: navigation, search
Line 5: Line 5:
 
   myElement.innerHTML = 'any HTML';
 
   myElement.innerHTML = 'any HTML';
 
}());
 
}());
 
 
$(function () {
 
  formElement = document.getElementById("dropdown");
 
  var newInput = document.createElement("INPUT");
 
  newInput.setAttribute("list", "viscosity");
 
  formElement.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);
 
});
 

Revision as of 22:08, 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';
}());