Jump to content

[SOLVED] Radio Button Issue


ainoy31

Recommended Posts

Hello-

 

Has anyone had an issue with the radio buttons not showing up in IE7 but it shows up in firefox?  I have a Yes and No radio buttons but the Yes button is missing.  Here is my code:

 

<tr>
	<td>Calculate unit dimensions?</td>
	<td>
		<input type="radio" name="cal_dim" value="Yes" onClick="hideAll(); changeDiv('cal_dim', 'block'); " />Yes
		<input type="radio" name="cal_dim" value="No" />No
	</td>
</tr>

 

It makes no sense to me.  Much appreciation.  AM

Link to comment
Share on other sites

I realize that I was using the same name for my radio input as for my DIV ID.  I changed the name and it fixed my issue.

 

<tr>
	<td>Calculate dimension of shipment units?</td>
	<td>
		<input type="radio" name="cal_dimen" value="Yes" onClick="hideAll(); changeDiv('cal_dim', 'block'); ">Yes
		<input type="radio" name="cal_dimen" value="No">No
	</td>
</tr>
</table>
</div>

<div id="cal_dim" style="display:none; ">
<br>

 

Originally, i had name="cal_dim" for the radio input name.  That was why the Yes button was hidden.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.