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.
<html>
<head>
<script language="JavaScript" type="text/javascript">
function toggleButton(thisButton)
{
thisButton = document.getElementById(thisButton);
if (thisButton.disabled == false) {thisButton.disabled = true;}
else {thisButton.disabled = false;}
}
</script>
</head>
<body>
<form>
<input type="checkbox" onclick="toggleButton('btnTest');">
<input type="button" name="btnTest" disabled="disabled" value="Test Button">
</form>
</body>
</html>
<html>
<head>
<script language="JavaScript" type="text/javascript">
function toggleButton(thisButton)
{
var btnTest = document.getElementById(thisButton);
if (btnTest.style.visibility == "hidden") {btnTest.style.visibility = "visible";}
else {btnTest.style.visibility = "hidden";}
}
</script>
</head>
<body>
<form name="frmTest">
<input type="checkbox" onclick="toggleButton('btnTest');">
<input type="button" name="btnTest" style="visibility: hidden;" value="Test Button">
</form>
</body>
</html>