How to auto refresh my web page every 10 seconds without resetting all the checkboxes?

This will auto refresh my web page every 10 seconds but will reset (uncheck) all the checkboxes

<body onload="timedRefresh(10000);">

<script type="text/javaScript">
    function timedRefresh(timeoutPeriod) {
	 setTimeout("window.location.reload(true);",timeoutPeriod);
    }
</script>

You should read about AJAX.
Here or here.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.