so this is the code i had found:
<script>function getAway() { window.open(“https://weather.com”, “_newtab”);window.location.replace(‘https://google.com’); } (function($) { $(‘.escape’).on(‘click’,function() { getAway();return false; }); $(document).keyup(function(e) { if (e.keyCode == 27) { getAway(); } }); })(jQuery);</script>
which i put in the header of the page and it works but the one browser (on my test site) allows you to go back to my site — whereas on the example neither browser allow you to go back…..so what am i missing?
PS THANK YOU!!!!