Prev: PgWest 2010 CFP (second call)
Next: Database management
From: =?ISO-8859-1?Q?Martin_Zvar=EDk?= on 27 Aug 2010 09:17 Dne 25.8.2010 22:32, Vinay Kannan napsal(a): > Hello Guys, > > Wanted to know if there is a way for us to find out, when a user moves away > from our website( closing the window and entering a different url in the > address bar ) > > closing the window i guess, we could use the javascript onclose or something > similar but for the user moving away from my website by entering a different > URL is what i would like to be able to find out. > > Thanks, > Vinay > Hi, you can use: window.onunload function() In this function you can add an AJAX that sends a server request that the user left. I used it for administration and it worked in 80% of cases - sometimes the request is just not sent. Martin
From: Vinay Kannan on 27 Aug 2010 14:16
Thank you everyone window.onunload() function works perfect, thats what I was looking for !! Thanks, Vinay Kannan. On Thu, Aug 26, 2010 at 3:24 AM, kesavan trichy rengarajan <k7(a)trk7.com>wrote: > Have a look at this: https://developer.mozilla.org/en/DOM/window.onunload > > <https://developer.mozilla.org/en/DOM/window.onunload>But, as someone > pointed out a few days ago, please do not post stuff that is not related to > PHP DB. > > > On Thu, Aug 26, 2010 at 6:32 AM, Vinay Kannan <vinykan(a)gmail.com> wrote: > >> Hello Guys, >> >> Wanted to know if there is a way for us to find out, when a user moves >> away >> from our website( closing the window and entering a different url in the >> address bar ) >> >> closing the window i guess, we could use the javascript onclose or >> something >> similar but for the user moving away from my website by entering a >> different >> URL is what i would like to be able to find out. >> >> Thanks, >> Vinay >> > > |