Difference between revisions of "MediaWiki:Common.js"

From UMaine SECS Numerical Modeling Laboratory
Jump to: navigation, search
Line 1: Line 1:
 
/* Any JavaScript here will be loaded for all users on every page load. */
 
/* Any JavaScript here will be loaded for all users on every page load. */
  
//$(function () {
+
$(function () {
//  var myElement = document.getElementById('displayText');
+
  var myElement = document.getElementById('displayText');
//  myElement.innerHTML = 'any HTML';
+
  myElement.innerHTML = 'any HTML';
//}());
+
}());
  
  

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