how to close current window from same page?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • nirmalsingh
    New Member
    • Sep 2006
    • 218

    how to close current window from same page?

    hi all i want to close current window fro same page. how to do this?

    my coding os sample.html

    Code:
    <html>
    <head>
    <script type="text/javascript" language="javascript">
    function first()
    {
    window.close();
    }
    window.onload=first();
    </script>
    </head>
    <body>
    <h1>FIRST PAGE</H1>
    </body>
    </html>
    above code not working
    thanx in advance.
    with cheers Nirmal
  • Dasty
    Recognized Expert New Member
    • Nov 2007
    • 101

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

    Comment

    Working...