Re: Trouble with javascript confirm() and IE...
What if you changed:
<a href="javascript:ConfirmLink('http://www.nrsweb.com/');"><input type="button" value="Home Page" /></a>
to:
<input type="button" value="Home Page" onClick="ConfirmLink('http://www.nrsweb.com/'); />
Since the <a> tag now has a javascript, you no longer get any benefit to having a link at all, so this should cause everything to be handled from the button itself.
__________________
The best way to learn anything, is to question everything.
Last edited by wige : 01-25-2008 at 11:38 AM.
Reason: oops
|