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 Wanet Telecoms Ltd 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. SDBlyth

    OnUnload problem

    This works in IE (haven't tested it anywhere else...) var Leaving = true; function leave() { if ((window.screenTop > 10000) && (window.screenLeft > 10000)) { /*...code here to open a window to perform cleanup on the host side - since this block is executed only when the browser is being...
  2. SDBlyth

    Method to run after page load

    Another way is: <html> <head> <script> ... function myfunction(){ ... } ... </script> </head> <body onload='myfunction()'> ... </body> </html>

Part and Inventory Search

Back
Top