confirm dialog not working properly in IE...

This is a discussion on "confirm dialog not working properly in IE..." within the JavaScript Forum section. This forum, and the thread "confirm dialog not working properly in IE... are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > JavaScript Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Jan 24th, 2008, 04:09
New Member
Join Date: Jan 2008
Location: sydney
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
confirm dialog not working properly in IE...

hi,

I currently have this script that i have placed on my page to catch whether a user clicks the delete link and if so displays an confirm dialog..


function ValidateEdit(ConfMessage)
{
var agree = confirm(ConfMessage);

if(agree())
{
return false;
}

}


the link that i want to use this function is as follows...
<a href="pagename.cfm" class="ViewUsersLink" onclick="return ValidateEdit();">delete</a>

In firefox this works perfectly. if using IE... it doesnt catch and prevent the user from deleting the item if they choose no...

any ideas ??

thanks
Reply With Quote

  #2 (permalink)  
Old Jan 24th, 2008, 04:24
Rakuli's Avatar
SuperMember

SuperMember
Join Date: Sep 2007
Location: Australia
Age: 24
Posts: 956
Blog Entries: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Re: confirm dialog not working properly in IE...

This line is wrong

if (agree())

agree is not a function, it is a variable.

use

if (agree){
return false;
}

etc.
Last Blog Entry: The wannabe juggler's quest (Oct 27th, 2007)
Reply With Quote
Reply

Thread Tools

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

Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] XmlHttpRequest not working properly djeyewater JavaScript Forum 3 Jan 31st, 2008 20:33
Form with confirm password field dhossai JavaScript Forum 28 Dec 16th, 2007 05:12
Javascript modal dialog title problem nitinmukesh123 JavaScript Forum 4 May 28th, 2007 03:58
background-repeat: repeat y not working properly AdRock Web Page Design 12 Feb 25th, 2007 22:17


All times are GMT. The time now is 11:14.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43