// JavaScript to display current weather conditions var tempf="61"; var tempc="16"; function displayUNLWeather() { document.getElementById("unlweathertempf").childNodes[0].nodeValue = tempf; document.getElementById("unlweathertempc").childNodes[0].nodeValue = "F/"+tempc+"c"; document.getElementById("unlvisibility").childNodes[0].nodeValue = "Overcast"; document.getElementById("unlhumidity").childNodes[0].nodeValue = "% RH"; document.getElementById("unlwind").childNodes[0].nodeValue = "Winds from the south at 3 mph"; document.getElementById("unlweatherasof").childNodes[0].nodeValue = "as of 3:54pm"; }