List of websites not working
|
|
Hi Simon, Thank you! It is really useful to have this script :) I open this thread so everyone can list the websites that are not working: http://cisco.netacad.net/cnams/home/StudentClas...&
Javascript Link And here's the function's code: // *** START: Code for Opening a new browser window without browser controls that fills up the whole screen *** // This function is used to open a new browser window which fills up the whole screen area, mostly used in the exam activation module // USAGE: // Open Yahoo! in a new window // function openFullScreenWin(url) { if (document.layers) { windowWidth = screen.width - 9; windowHeight = screen.height - 58; windowprops = "scrollbars,alwaysRaised,titlebar=0,top=0,left=0,width=" + windowWidth + ",height=" + windowHeight; myNewWin = window.open(url, "popupPage", windowprops); myNewWin.focus() } else if (document.all) { myNewWin = window.open(url, "popupPage", 'fullscreen=yes,scrollbars=yes'); myNewWin.focus() } else { // Fix for Netscape 7.0 myNewWin = window.open(url, "popupPage", 'width=' + window.screen.availWidth+',height='+window.screen.availWidth+',scrollbars=yes, screenX = 0, screenY = 0'); myNewWin.focus(); } } // *** End: Code for Opening a new browser window without browser controls that fills up the whole screen *** Thanks again! :) |
![]() ![]() |
Hello! Thank you for this quite useful script :) I have also found a few sites that are not compatible with it: okcupid.com
Disabling the script for these sites restored their functionality. |


