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.
<form name="form1" action="process.asp">
... regular fields ...
<input type="hidden" name="id" />
<input type="hidden" name="ref" />
</form>
function test(id, ref){
var f = document.forms['form1'];
f.elements['id'].value = id;
f.elements['ref'].value = ref;
f.submit();
}
document.forms['form1'].action = "proccess.php?id="+id;