Convert javascript or onclick to normal links

By Simon Houston Last update Apr 17, 2006 — Installed 2,799 times. Daily Installs: 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 3, 2, 1, 1, 1, 1, 0, 0, 0

List of websites not working

Subscribe to List of websites not working 2 posts, 2 voices

XaviEsteve Scriptwright

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...&
The link I wanted to click is:

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! :)

 
Ubermonkey Scriptwright
FirefoxMacintosh

Hello! Thank you for this quite useful script :)

I have also found a few sites that are not compatible with it:

okcupid.com
prosper.com
swaptree.com
ingdirect.com
kayak.com

Disabling the script for these sites restored their functionality.

Cross
Presentational HTML allowed.
Use <code> for inline code and <pre> for code blocks. Use &lt; and &gt; for literal < and >.
We help break paragraphs and link your links.
or cancel