$('body').append(`
`) $(window).resize(function () { if (window.innerHeight > window.innerWidth - 75) { $('#everything').hide(); $('#tooSmall').show(); } else { $('#everything').show(); $('#tooSmall').hide() } }); function backButton() { if (window.history.length > 1 && document.referrer.startsWith(window.location.origin)) window.history.back() else window.location.href = "../../../../../" } $(document).keydown(function(k) { if (k.keyCode == 27) { //esc k.preventDefault() if ($('.popup').is(":visible")) $('.popup').hide(); else $('#backButton').trigger('click') } }); while ($(this).scrollTop() != 0) { $(this).scrollTop(0); } $(document).ready(function() { $(window).trigger('resize'); });