Skip to content
Advertisement

How can I log out the user even if they don’t respond to JavaScript’s “confirm()”?

This was the initial code I was using:

JavaScript

The confirm dialog awaits action from the user. If the action is “cancel”, they remain logged in. If the action is “OK” the are redirected to the logout.php page. The issue is that if the user does not respond, they are not logged out after those elapsed 30 seconds.

Then I thought I may use two time intervals:

JavaScript

but since the confirm() method halts the script, the 60000 ms is never realised. Is there a way I can get this to work?

Advertisement

Answer

Here is my suggestion

  1. start a timer that logs the user out
  2. start a graceTimer to show a link
  3. if link clicked, the timers restarts
  4. if not, the user is logged out

https://jsfiddle.net/mplungjan/t5ejs72q/

JavaScript
JavaScript
JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement