jquery - Radio Button change event not working in chrome or safari -


i've got radio buttons on page , when yes selected, other controls (dropdowns , textboxes) become visible. if no selected, become invisible again. working fine in ff & ie. work when use mouse chrome, when i'm tabbing through page, controls never become visible. it's if change event doesn't trigger because i'm tabbing. ideas of might causing this, or how i'd go fixing it?

the show/hide functionality being done jquery.

edit: showing code giving problems.

$("#rbtncontrolyes").change(function () { $("#othercontrols").show(); }); 

found answer this.

instead of using .change event, switched .click , worked fine.

hope helps someone.

slap


Comments

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -