I have a text box that I immediately validate using an OnBlur function. However, if the user clicks on a radio button after they have entered their text (which triggers the onBlur event), the radio button doesn't get selected. You have to then click the radio button a second time to select it.
Maybe easier by example:
<input type="text" onfocusout ="alert('HELLO')">
<input type="radio" name="test">
<input type="radio" name="test">
if you view the above html, type something in the text box and then click a radio button. The alert is displayed but the radio button is not selected. You need to click it again to select it.
Any ideas??
Maybe easier by example:
<input type="text" onfocusout ="alert('HELLO')">
<input type="radio" name="test">
<input type="radio" name="test">
if you view the above html, type something in the text box and then click a radio button. The alert is displayed but the radio button is not selected. You need to click it again to select it.
Any ideas??