http://ano-mag.com/black-foil/ please check this url – click the “Order Now” button on the left side – notice how the radio buttons won’t work? I cant figure it out!
http://ano-mag.com/black-foil/ please check this url – click the Order Now button on the left
Share
I reproduced the faulty behavior on your fiddle, it’s due to this block of code:
Which prevents the
clickevent from bubbling up the DOM to your radio buttons.=]Complementary edit:
Your text
inputs still gain focus in the faulty scenario because text inputs gain focus in themousedownevent, which is properly executed as it fires before theclickevent. Theradioinputs, however, are checked in theclickevent which is being cancelled by your function.=]