Untitled
5 hours ago in HTML
<DOCTYPE html>
<html>
<head>
<script>
const action = sessionStorage.getItem("action");
if (action == 'close')
{
throw 'stop';
}
switch (action) {
     case 'search':
            alert('close');
            sessionStorage.setItem("action", "close")
            break
     case 'results':
            alert('results main page');
            sessionStorage.setItem("action", "product")
            break
     case 'product':
            alert('product page py king');
            sessionStorage.setItem("action", "search")
            break
    default:
            alert('search');
            sessionStorage.setItem("action", "results")
            break
}
window.location.reload();
</script>
</head>
<body>
</body>
<html>