Click to See Complete Forum and Search --> : Netscape works...IE Doesn't...Why?


rjusa
11-03-2003, 11:21 AM
In a form I have the following:

<SCRIPT>
function SetNextPage(nextpage) {
document.forms[0].next_page.value=nextpage;
return 0;
}
</SCRIPT>

<input type=hidden name="next_page" value="">

<input type="radio" name="IFAC" value="Yes" $IFAC_Yes_checked$ onClick="SetNextPage('Canadian_supp10')" tabindex="26" style="font-size: 10pt"></b></font><font face="Arial"><font size="2" color="#000000">Yes</font></font><font size="3" color="#000000"><font face="Arial" size="2"><b>
<input type="radio" name="IFAC" value="No" $IFAC_No_checked$ onClick="SetNextPage('MedAdv_LifeStyle')" tabindex="27" style="font-size: 10pt"></b></font></font><font face="Arial" size="2" color="#000000">No</td></font><font size="3" color="#000000"><br>

<input type="submit" name="next" value="Continue >>" tabindex="28" style="color: #008000; font-family: Arial; font-weight: bold"></td>


This works just fine under Netscape but when I click "Continue >>" in IE , nothing happens! Any ideas?

Thanks,
Ron

Jona
11-03-2003, 12:11 PM
Try taking out the return 0; part... Nothing else seems to be a problem, from what I can see. Make sure it's inside <form> tags, and there is an ending </form> tag...

[J]ona

rjusa
11-03-2003, 05:07 PM
tried taking out the 0;...no luck. What's even more bizarre is that if I don't enter values and click "Continue" the required field checker kicks in in Netscape but in IE nadda, nothing happens...perplexed!

Ron