This is my response to Chidambaram's response.
I think I've gotten the javascript portion figured out...I tried something similar, but it didn't work so I went back to the way it was....though, this was the direction I was going in.
I now have a problem with the data...the response I'm getting from the API request is a combination of xml and html. I think that's because the response is an RSS feed. So, I think my pulls of element tags are trying to get data from the html instead of the xml. I keep getting an error that my prediction tag has no properties, which simply isn't true. So it is getting into the for loop, getting the description, but getting an error beginning here:
prediction[i].childNodes[0].nodeValue + "
" +
highTemp[i].childNodes[0].nodeValue + " " + highTemp[i].getAttribute('units') + "
" +
lowTemp[i].childNodes[0].nodeValue + " " + lowTemp[i].getAttribute('units') + "
"};
I commented out the first line, and the received the same error from the highTemp[i].childNodes request. That's all I can figure out for the error....any ideas on how to fix it?
Once I get this up...all I have to work on is cross browser functionality and I think it'll be good to go! So close! Thanks for the help!!!!