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.
if(cookieExists() && document.referrer.toLowerCase().indexOf("test1.html")==-1){
deleteCookie();
location.replace("test1.html");
}
function cookieExists(){
// check for your cookie here
}
function deleteCookie(){
// delete your cookie here.
}