I have some web page with input fields in it and one of them is a checkbox, I'm trying to create 'clear all' button to clear all values including checkbox 'v'.
I tried $('#check5').removeAttr('checked');
and $('#check5').attr('checked',false);
.
But it works only after pressing F5, and I would like to change the attribute status without refreshing the page. Any idea ?