Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<script>
function checkAll(c){
var chks = document.getElementsByName(c.name);
for(var i=0;i<chks.length;i++){
chks[i].checked = c.checked;
}
}
</script>
<input type="checkbox" name="myCheck" onclick="checkAll(this)">
<input type="checkbox" name="myCheck" onclick="checkAll(this)">
onclick="if (this.checked){checkAll(this);}"