Connecting Tech Pros Worldwide Forums | Help | Site Map

how to close current window from same page?

nirmalsingh's Avatar
Familiar Sight
 
Join Date: Sep 2006
Location: Madurai - India
Posts: 217
#1: Dec 13 '07
hi all i want to close current window fro same page. how to do this?

my coding os sample.html

Expand|Select|Wrap|Line Numbers
  1. <html>
  2. <head>
  3. <script type="text/javascript" language="javascript">
  4. function first()
  5. {
  6. window.close();
  7. }
  8. window.onload=first();
  9. </script>
  10. </head>
  11. <body>
  12. <h1>FIRST PAGE</H1>
  13. </body>
  14. </html>
  15.  
above code not working
thanx in advance.
with cheers Nirmal

Dasty's Avatar
Expert
 
Join Date: Nov 2007
Location: Slovakia
Posts: 101
#2: Dec 13 '07

re: how to close current window from same page?


You can not close any window. You can close only the ones, that you opened with scripts (like with window.open()).
Reply