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.
//two alerts after each other
alert("hey im the first alert");
alert("im the alert right after the first alert");
$confirmValue = confirm ("<%=vRequesterName%>, your Tooling Request has been saved.\nYou will receive an email confirmation!\n Click OK to submit");
if ($confirmValue)
{
// do submitting here
// you could just redirect the script to your url
document.location.href = "TheURL";
}