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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by tbone317

  1. tbone317

    onLoad() method

    The specification says that the onLoad() method is to be invoked in the <BODY> tag. Can I declare the onLoad within the JavaScript instead? The following is giving me an error. function init() { var s = document.getElementsByTagName(&quot;A&quot;); for(var i = 0; i <...
  2. tbone317

    Position of popup window

    This will open a popup window at the location of a mouse click, hope this helps. var a = event.screenX; var b = event.screenY; var max_width = screen.width - 600; var max_height = screen.height - 150; if(a >= max_width) a = a - 600; if(b >= max_height) b = b - 150...
  3. tbone317

    Determine if a user leaves my domain.

    How can I determine if a user leaves my domain?

Part and Inventory Search

Back
Top