Checkbox Click Not Working From Within Unordered List Item
I am unable to 'check' an input checkbox that is embedded in an expandable UL. I know the reason has something to do with click binding but I just can't figure it out. The UL is d
Solution 1:
You are returning false from the li click event so the event never gets to the checkbox. Just remove the line return false; from the event handler and the checkbox will work normally. Here's a jsFiddle.
Post a Comment for "Checkbox Click Not Working From Within Unordered List Item"