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 Mike Lewis 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: *

  • Users: c3f8
  • Order by date
  1. c3f8

    getElementsByTagName bug ?

    thanks a lot. the problem was that alert(temp[1]) showed a string. i was thinking that temp[1] was not representing a node object when i was removing it. thanks again.
  2. c3f8

    getElementsByTagName bug ?

    Hi there. Iam facing a very strange problem. starting with the code: <html> <script language = 'javascript'> function init(){ var x = window.document.getElementById("z"); var temp = x.getElementsByTagName("a"); x.removeChild(temp[1]); } </script> <body onload = "init();"> <div id = "z">...
  3. c3f8

    Content type check

    i will try that. thanks
  4. c3f8

    Content type check

    i was able to get information using mozilla but not in ie. thanks.
  5. c3f8

    Content type check

    Hi!! Is there anyway of getting page content-type in client-side using javascript? thanks
  6. c3f8

    wait for script to load

    thanks
  7. c3f8

    wait for script to load

    var headID = window.document.getElementsByTagName("HEAD")[0]; var newScript = window.document.createElement("SCRIPT"); newScript.type = "text/javascript"; newScript.src = "teste.js"; headID.appendChild(newScript); alert(3); this is my code. the "teste.js" just have an...
  8. c3f8

    wait for script to load

    hi there. Is there any way of loading dynamically a script and wait for him to load? I am using google api but i just want to load the script when i press a button but i need for the script to load to continue processing. thanks

Part and Inventory Search

Back
Top