I’ve got some radio buttons on a page and when Yes is selected, some other controls (dropdowns and textboxes) become visible. If No is selected, they become invisible again. This is working fine in FF & IE. It does work when I use the mouse with chrome, but when I’m tabbing through the page, the controls never become visible. It’s as if the change event doesn’t trigger because I’m tabbing. Any ideas of what might be causing this, or how I’d go about fixing it?
The show/hide functionality is being done with JQuery.
Edit: Showing the code that is giving problems.
$("#rbtnControlYes").change(function () { $("#otherControls").show(); });
Found the answer to this.
Instead of using the .change event, I switched it to .click and everything worked fine.
Hope this helps someone.
Slap