Forum     

Go Back   Digit Technology Discussion Forum > Software > Programming
Register FAQ Calendar Mark Forums Read

Programming The destination for developers - C, C++, Java, Python and the lot


Reply
 
LinkBack Thread Tools Display Modes
Old 06-05-2011, 03:35 PM   #1 (permalink)
Right Off the Assembly Line
 
Join Date: May 2011
Posts: 6
Default logout confimation with jquery alert?


hey all,
i wanna make a confirmation alert box (jquery i suppose) then when triggers when someone click log out. on cancel it stays there but on ok it destory the session and cookies and logout. anyone help me out me wid that?
bagsfr is offline   Reply With Quote
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 06-05-2011, 03:45 PM   #2 (permalink)
Simply a DIGITian
 
krishnandu.sarkar's Avatar
 
Join Date: Nov 2007
Location: Kolkata
Posts: 2,942
Default Re: logout confimation with jquery alert?

No need of jQuery, simple javascript would do this.

Code:
var logout = confirm("Do you really want to Logout?");
if (logout == true)
{
   window.location="http://yourplace.com/yourpage.php";
}
Now put this under a function say confirmLogout() and call this on onclick event of button.

Now on that PHP page, where you'd redirect destroy the session etc. and whatever you want to do and redirect it to homepage at last.

For eg.
PHP Code:
<?php

ob_start
();
session_start();
session_destroy();

header("Location:homepage.html");

?>
__________________
  • Read The Forum RULES First.
  • Before PM'ing Or Asking Any Questions To Any Mod Read The FAQ's
  • Before Starting A New Thread Read The STICKY THREADS First
  • Before Participating In Bazaar Section Read The BAZAAR RULES
krishnandu.sarkar is online now   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


 
Latest Threads
- by Charan
- by Sarath
- by clmlbx

Advertisement




All times are GMT +5.5. The time now is 12:27 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2