0
votes
1answer
48 views

I have two buttons on a page, save and complete. I'm looking for two different alerts for two input fields

If the value of the input box for charge_amt is not entered I'm using an onbeforeunload jquery event which notifys the user they didn't enter an amount. After they enter the amount they are allowed to ...
1
vote
1answer
38 views

onbeforeunload to trigger shopping cart abandonment

Is the 'onbeforeunload' event 100% consistent, effective and worthy of using as a trigger for a shopping cart abandonment campaign?
0
votes
2answers
77 views

onbeforeunload while page loads

I'm just curious if things like this is possible >> While still loading a web page, is it possible to return an onbeforeunload like dialog when a user try to navigate to other page or close the ...
1
vote
3answers
218 views

Javascript code not running onbeforeunload

I have 3 variables to track timespent in the site $_SESSION['checkin']; //logged when user first enters the site $_SESSION['loggedAt']; //logged when the user leaves the site ...
0
votes
2answers
124 views

Mysql and onbeforeunload

Hi I'm trying to delete a row in a mysql database when the user leaves a page on my website but it's not working for some reason. I know the onbeforeunload works because if i delete everything in ...
1
vote
2answers
115 views

php / js - how do I delete a file when the page unloades?

I have an issue here, I'm not sure if it's possible but I would like to delete a file when the user leaves the page... I currently have a php script (see below) which handels the deleting of a file, ...
0
votes
1answer
151 views

onbeforeunload trigger popup only when onload not finished

I am trying to find out if user leaves before pageload is complete but i`m having a little trouble with the after page load is finished cause i dunno how to disable it. This is part of a search ...
1
vote
1answer
1k views

How to execute ajax function onbeforeunload?

I'm developing a php/javascript chat. When the user logs in, his/her username is inserted in a MySQL table called queue. This insert returns the mysql_insert_id() that will be stored in a session ...
1
vote
1answer
139 views

How to reliably run code on page close (e.g. “disconnected” message on site chat)

I have a 2-person site chat (us and any questioning clients) and I'd like to display "$client has disconnected" when they disconnect through any way, including: Pressing back on the browser Closing ...
0
votes
2answers
192 views

How to get current URL when using XMLHttpRequest

I have the following code to call count_visit.php on onbeforeunload event. That works great. However, when I use $_SERVER['REQUEST_URI'] the result is count_visit.php and not the real URL. <script ...
0
votes
3answers
6k views

Executing a php script in javascript?

I'm trying to run a quick php script when users leave my website, and also pass a variable from my javascript to php but i'm not quite sure how to include the php file and pass it a var. But it's not ...
1
vote
3answers
39 views

User Friendly Video Review with Locking

We have a jquery/php/mysql system that allows a user to log in and review videos built by a system for online viewing. When a user begins reviewing a video, the video is marked as such. But now ...
4
votes
3answers
2k views

Check if user hits back button in browser

I'm trying to use the javascript onbeforeunload event to ask the user if they want to exit the page, but I don't want the event to fire (EDIT: "the event" being the dialog box that pops up asking the ...