views:

131

answers:

1

I'm using a jQuery slider script to show and hide content. The script works perfectly but has one downside: radio buttons inside the sliding div are unclickable / cannot be checked.

If you hit the radio button of "Keuzerondjes" or "Selectievakjes", you'll see a div slides out - and that the radio button you just hit isn't checked. Does anyone have an idea how to solve this?

A: 

Returning false prevents the radio button from being checked. Try removing your return false statements if that is not the wanted behaviour.

Simeon
Works like a charm now. Thanks Simeon!