So I was logging into a website earlier today on my PC, and this gets thrown up for me
" + ""; return head; } function htmlFooter() { return "" + ""; } function hideFrames() { var gqFrame = document.getElementById('gqFrame'); gqFrame.rows = rowsHideAll; } function getWindowHeight() { return document.documentElement.offsetHeight; } function setAutoHeight(pixels){ if (navigator.userAgent.match(/iphone/i) || navigator.userAgent.match(/ipad/i)) document.getElementById('main').style.height=pixels+"px"; } function calculateWindow(btnofstHeight) { document.getElementById("buttonDiv").style.height = btnofstHeight+"px"; if (!(navigator.userAgent.match(/iphone/i) || navigator.userAgent.match(/ipad/i))) { if(document.getElementById("mainDiv").style.height < screen.height) { document.getElementById("mainDiv").style.height = screen.height; document.getElementById("main").style.height = screen.height; } } document.getElementById("buttonDiv").style.position = "fixed"; document.getElementById("buttonDiv").style.bottom = "0"; document.getElementById("progress").scrolling = "no"; document.getElementById("errors").scrolling = "no"; document.getElementById("buttons").scrolling = "no"; window.scrollTo(0,0); if (navigator.userAgent.match(/iphone/i) || navigator.userAgent.match(/ipad/i)) orientationchange(); } function orientationchange() { var winWidth = 0; var viewport = document.querySelector("meta[name=viewport]"); if(window.orientation == '90' || window.orientation == '-90') { winWidth = screen.height; viewport.setAttribute('content', 'width=device-height, height=device-width, initial-scale=1.0, user-scalable=1'); } else { winWidth = screen.width; viewport.setAttribute('content', 'width=device-width, height=device-height, initial-scale=1.0, user-scalable=1'); } document.getElementById("progressDiv").style.width = winWidth; document.getElementById("progress").style.width = winWidth; document.getElementById("mainDiv").style.width = winWidth; document.getElementById("main").style.width = winWidth; document.getElementById("buttonDiv").style.width = winWidth; document.getElementById("buttons").style.width = winWidth; var el = document.getElementById('buttons'); var childWindow = el.contentWindow?el.contentWindow:el.contentDocument; childWindow.setFrameOrientation(window.orientation); }
Funny thing, logging into the same website from a friend's computer would not result in this. Also, this problem is not restricted to just one browser on my computer. Any suggestions as to how I can get past this? Thanks in advance.
-
Added by barlop
Questioner has provided a link in the comments, included here-
link here