Thread: Alert Box
View Single Post
  #2 (permalink)  
Old Mar 25th, 2008, 23:07
CloudedVision's Avatar
CloudedVision CloudedVision is offline
Nerdy Moderator
Join Date: Feb 2008
Location: In My Own Little World
Age: 14
Posts: 1,229
Blog Entries: 9
Thanks: 2
Thanked 38 Times in 38 Posts
Re: Alert Box

Easy. HTML:

HTML: Select all
<a href="logout.php" onclick="logout_confirm();">Logout</a>
javascript:

Code: Select all
function logout_confirm() {
  if(confirm("Are you sure you want to logout?"))
    return true;
  else
    return false;
}
Tell me if that works or not, didn't have a chance to test it.
__________________
CloudedVision, WebForumz Moderator
Web Design And Development: Other Road Design | Problems with IE6?: KApp | My Blog: Only Nerds Allowed
Reply With Quote