SetAttribute("checked", "checked") Only Works One Time
I am facing one issue HTML JQUERY $('#id').click(fun
Solution 1:
The checked
attribute sets the default state, not the current state.
Modify the checked
property (with .checked = true
) instead.
Post a Comment for "SetAttribute("checked", "checked") Only Works One Time"