Skip to content Skip to sidebar Skip to footer

Setattribute("checked", "checked") Only Works One Time

I am facing one issue HTML JQUERY $('#id').click(fun

Solution 1:

The checkedattribute sets the default state, not the current state.

Modify the checkedproperty (with .checked = true) instead.

Post a Comment for "Setattribute("checked", "checked") Only Works One Time"