Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. aaronantrim

    Instead of string values, JavaScript returns "[object Element]"

    Don't know what the issue was, but it likely was cache related. After I cleared the cache and made some changes, it worked. Thanks!
  2. aaronantrim

    Instead of string values, JavaScript returns "[object Element]"

    While the last fix worked fine, I can't seem to make it work for some other values coming out of the same XML file. What I've added is another node in the XML file with info on transfers, and it's loaded in the same way as the other info was: // load the XML file var request =...
  3. aaronantrim

    Instead of string values, JavaScript returns "[object Element]"

    Thank you so much. That works perfectly. -Aaron Trillium Transit Internet Solutions http://www.trilliumtransit.com p.s. Coedit looks like a cool firm.
  4. aaronantrim

    Instead of string values, JavaScript returns "[object Element]"

    Thanks, BillyRayPreachersSon: I tried the change you suggested. It changed the output, but did not produce the strings with the stop names I wanted. Here's the streamlined code with your change: // load the XML file var request = GXmlHttp.create(); request.open("GET", "stops.xml", true)...
  5. aaronantrim

    Instead of string values, JavaScript returns "[object Element]"

    Hi, I'm doing a little bit of Google Maps API work and am new to JavaScript. Here is the code: // load the XML file var request = GXmlHttp.create(); request.open("GET", "stops.xml", true); request.onreadystatechange = function() { if (request.readyState == 4) {var xmlDoc =...

Part and Inventory Search

Back
Top