KerryK137
03-26-2003, 04:42 PM
I would appreciate some help with this:
I posted a related message earlier: http://www.codingforums.com/showthread.php?threadid=15755&highlight=netscape
In summary, I have a form on a page with a drop down menu. I put a div tag around the entire form so that the form would disappear when a user scrolls over the menu. This works fine. Thanks to the help of other forum members, I figured out a workaround for the onsubmit and how to access the form elements within the div tag in NS (see other message).
The major problem is that in Netscape 4.X, none of the onclick, onchange , etc events will execute (IE works fine).
I have a similar form within a div tag with the following elements:
<select name = "A" onchange="change_C_content();">...</select>
<input type = "radio" name = "B" onclick = "change_C_content()">
<select name = "C">...</select>
I've tried putting "Alert('hi')" in the onchange event, and even that doesn't execute. Does anyone have any suggestions?
Thank you.
I posted a related message earlier: http://www.codingforums.com/showthread.php?threadid=15755&highlight=netscape
In summary, I have a form on a page with a drop down menu. I put a div tag around the entire form so that the form would disappear when a user scrolls over the menu. This works fine. Thanks to the help of other forum members, I figured out a workaround for the onsubmit and how to access the form elements within the div tag in NS (see other message).
The major problem is that in Netscape 4.X, none of the onclick, onchange , etc events will execute (IE works fine).
I have a similar form within a div tag with the following elements:
<select name = "A" onchange="change_C_content();">...</select>
<input type = "radio" name = "B" onclick = "change_C_content()">
<select name = "C">...</select>
I've tried putting "Alert('hi')" in the onchange event, and even that doesn't execute. Does anyone have any suggestions?
Thank you.