Radio Button wont work in internet explorer but works fine in firefox
Posted
by Mo
on Stack Overflow
See other posts from Stack Overflow
or by Mo
Published on 2010-05-27T11:27:11Z
Indexed on
2010/05/27
11:31 UTC
Read the original article
Hit count: 138
html
Hi
i have HTML code like so:
<div id="action_content" class="layout">
<input type="hidden" id="action_editing" value=""/>
<div id="action_types">
<input type="radio" checked name="action_type" value="EmailActionDescription" onclick="toggle_action(this);"/><label>Email</label>
<input type="radio" name="action_type" value="TicketActionDescription" onclick="toggle_action(this);"/><label>Ticket</label>
</div>
it works fine in firefox but dosent work in internet explorer.
any ideas what it could be? the buttons basically display one of 2 options, a ticket or e mail, when clicking on the ticket it just dosent show.
if you require any further information please let me know.
thanks
© Stack Overflow or respective owner