jtaylorttt
Programmer
I have some javascript that puts up a confirm box. after the confirm box, depending on if they selected ok/cancel I display a alert.
under ie this works fine, under the latest firefox 1.5.0.7. I get the box and then it seems to exit and does not get to the alert.
any ideas?
if (confirm("Are you sure you wish to APPROVE this property?") == false)
{
alert('said no');
return;
}
alert('said yes');
under ie this works fine, under the latest firefox 1.5.0.7. I get the box and then it seems to exit and does not get to the alert.
any ideas?
if (confirm("Are you sure you wish to APPROVE this property?") == false)
{
alert('said no');
return;
}
alert('said yes');