Hi Everyone
I have the following javascript that suppose to stop
the user from doing multiple submit. It's work
perfectly in NS 4+, but does't work at all in IE 5+.
Is there any known Javascript problem in IE 5+?
Or there is a problem with the code?
(both browsers had Javascript enabled)
Thanks
Tinh
<SCRIPT LANGUAGE="JavaScript">
<!--
var OpenLinkClicked = false;
function StopClicked()
{
if (OpenLinkClicked){
return false;
}else{
OpenLinkClicked = true;
return true;
}
}
// -->
</SCRIPT>
<FORM Action = "xxxx.cfm" Name = "form"
OnSubmit="StopClicked()">
xxxxxxxx
</FORM>
__________________________________________________
Do You Yahoo!?
Talk to your friends online with Yahoo! Messenger.
http://im.yahoo.com
------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.