uncheck checkbox on page refresh

<script type="text/javascript">
$(document).ready(function(){
$(':checkbox:checked').prop('checked',false);
</script> 
 
Use prop instead:
$(':checkbox:checked').prop('checked',false);
or removeAttr:
$(':checkbox:checked').removeAttr('checked');
 

Comments

Popular posts from this blog

PHP Ajax Login Validation Tutorial

Real-Time Web Interface to MQTT using Socket.io and Node.js

New User Registration With Email Verification Using PHP and Mysqli