window close problem

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • point

    window close problem

    Hello I'm a bit new to JS so be gentle :)

    I have a popup window name 'popup'....

    In this window content is changing according to user choice...

    how can i display alert box only when this popup window is closed??

    thanx...

    point


  • point

    #2
    Re: window close problem

    I have found a solution but I think the code isn't optimized(I have a
    feeling that some lines are not used) but I don't have enough experience
    with JS to optimize it by myself.....

    So if some of You experienced guys could take a look at this and remove
    what's not used...Or if you could do it in some other way.....

    Thanx in advance...

    function check_closed()
    {
    var top=self.screen Top;
    if (top>9000)
    {
    alert('Don't forget to refresh your window!')
    }
    }

    and

    <body onunload="javas cript:if (document.all){ check_closed()} else {var
    top=window.oute rWidth;if (top==0) {opener.alert(' window was closed')}}">

    respect...

    point



    "point" <info@caanprodu ction.com> wrote in message
    news:beu82n014k c@enews1.newsgu y.com...[color=blue]
    > Hello I'm a bit new to JS so be gentle :)
    >
    > I have a popup window name 'popup'....
    >
    > In this window content is changing according to user choice...
    >
    > how can i display alert box only when this popup window is closed??
    >
    > thanx...
    >
    > point
    >
    >[/color]


    Comment

    Working...