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 language="javascript">
function submitform() {
//also replace the formname with the name of the form that u have
alert("page was submited")
document.formname.method = "" //should be post or get
//depending on what u require
document.formname.action = "" //the page u want the form to go to
document.formname.submit()
}
</script>