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.
function FUNCTION_NAME(){
var checked;
checked = document.forms[0].Box.checked;
if (checked == true){
HERE IS ALL THE STUFF
}
}
<a onclick=FUNCTION_NAME()>Click this to do stuff!</a>
<html>
<head>
<script type="text/javascript">
<!--
function checkSubmit() {
if (document.forms[0].box.checked) var winMap = window.open('appwin.php#man', 'winNffew', 'scrollbars,top=0,left=20,width=340,height=130');
}
//-->
</script>
</head>
<body>
<form action="applynow1a.php" method="post" name="theform" id="theform">
<a href="javascript:void(0);" onClick="checkSubmit()">Management</a>
<input type="checkbox" name="box" value="">
</form>
</body>
</html>