<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Discussion on Convert javascript or onclick to normal links | Userscripts.org</title>
    <link>http://userscripts.org/scripts/show/3875</link>
    <description>Recent comments on userscript: Convert javascript or onclick to normal links</description>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>List of websites not working, replied by Ubermonkey</title>
      <description>&lt;p&gt;Hello!  Thank you for this quite useful script :)&lt;/p&gt;

&lt;p&gt;I have also found a few sites that are not compatible with it:&lt;/p&gt;

&lt;p&gt;okcupid.com
&lt;br /&gt;prosper.com
&lt;br /&gt;swaptree.com
&lt;br /&gt;ingdirect.com
&lt;br /&gt;kayak.com&lt;/p&gt;

&lt;p&gt;Disabling the script for these sites restored their functionality.&lt;/p&gt;</description>
      <pubDate>Mon, 07 Sep 2009 19:40:41 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:23726:166986</guid>
      <author>Ubermonkey</author>
      <link>http://userscripts.org/posts/166986</link>
    </item>
    <item>
      <title>List of websites not working, replied by LuckyShot</title>
      <description>&lt;p&gt;Hi Simon,&lt;/p&gt;

&lt;p&gt;Thank you! It is really useful to have this script :)&lt;/p&gt;

&lt;p&gt;I open this thread so everyone can list the websites that are not working:&lt;/p&gt;

&lt;p&gt;&lt;b&gt;&lt;a href=&quot;http://cisco.netacad.net/cnams/home/StudentClass.jsp?pageName=Student&amp;amp;classID=1234567&quot;&gt;http://cisco.netacad.net/cnams/home/StudentClas...&lt;/a&gt;&amp;amp;&lt;/b&gt;
&lt;br /&gt;The link I wanted to click is:
&lt;br /&gt;&lt;pre&gt;&lt;a&gt;Javascript Link&lt;/a&gt;&lt;/pre&gt;&lt;/p&gt;

&lt;p&gt;And here's the function's code:&lt;/p&gt;

&lt;p&gt;&lt;pre&gt;// *** 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: 
//    &lt;a&gt;Open Yahoo! in a new window&lt;/a&gt;
//
function openFullScreenWin(url) {
	if (document.layers) {
		windowWidth = screen.width - 9;
		windowHeight = screen.height - 58;
		windowprops = &quot;scrollbars,alwaysRaised,titlebar=0,top=0,left=0,width=&quot; + windowWidth + &quot;,height=&quot; + windowHeight;
		myNewWin = window.open(url, &quot;popupPage&quot;, windowprops);
		myNewWin.focus()
	}
	else if (document.all) {
		myNewWin = window.open(url, &quot;popupPage&quot;, 'fullscreen=yes,scrollbars=yes');
		myNewWin.focus()
	}
	else {
		// Fix for Netscape 7.0
		myNewWin = window.open(url, &quot;popupPage&quot;, '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 ***
&lt;/pre&gt;&lt;/p&gt;

&lt;p&gt;Thanks again! :)&lt;/p&gt;</description>
      <pubDate>Tue, 24 Mar 2009 09:50:06 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:23726:105225</guid>
      <author>LuckyShot</author>
      <link>http://userscripts.org/posts/105225</link>
    </item>
    <item>
      <title>Archived Comments, replied by Andrew Pennebaker</title>
      <description>&lt;p&gt;I couldn't install Firefox search engine plugins until I excluded Mycroft from being used: &lt;a href=&quot;http://mycroft.mozdev.org/&quot;&gt;http://mycroft.mozdev.org/&lt;/a&gt;*. There are a bunch of link-changing extensions and many more websites that use redirects and javascript to do certain actions. If you think Mycroft is a very common one, please include it in the default exclusion list.&lt;/p&gt;</description>
      <pubDate>Sun, 10 Dec 2006 04:12:53 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:13924:47116</guid>
      <author>Andrew Pennebaker</author>
      <link>http://userscripts.org/posts/47116</link>
    </item>
    <item>
      <title>Archived Comments, replied by Maxx</title>
      <description>&lt;p&gt;great idea!
&lt;br /&gt;but don't work too with links on blummy.com (mixed strange links with &quot;javascript:void(0)&quot; and onclick=&quot;location.href='...'&quot; )&lt;/p&gt;</description>
      <pubDate>Thu, 24 Aug 2006 06:43:58 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:13924:47117</guid>
      <author>Maxx</author>
      <link>http://userscripts.org/posts/47117</link>
    </item>
    <item>
      <title>Archived Comments, replied by Georges Dup&#233;ron</title>
      <description>&lt;p&gt;Won't work with &lt;a href=&quot;http://*.myfuncards.com/&quot;&gt;http://*.myfuncards.com/&lt;/a&gt;
&lt;br /&gt;(mainly &lt;a href=&quot;http://gallery.myfuncards.com/&quot;&gt;http://gallery.myfuncards.com/&lt;/a&gt;, I haven't tested the others...)&lt;/p&gt;

&lt;p&gt;You should check that there si only one argument for the jscript, &amp;amp; if there are several, check if it looks like an adress...&lt;/p&gt;</description>
      <pubDate>Sun, 14 May 2006 08:41:31 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:13924:47118</guid>
      <author>Georges Dup&#233;ron</author>
      <link>http://userscripts.org/posts/47118</link>
    </item>
    <item>
      <title>Archived Comments, replied by Webb</title>
      <description>&lt;p&gt;It doesn't work with Foxnews.com video links.&lt;/p&gt;</description>
      <pubDate>Tue, 18 Apr 2006 21:03:20 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:13924:47119</guid>
      <author>Webb</author>
      <link>http://userscripts.org/posts/47119</link>
    </item>
    <item>
      <title>Archived Comments, replied by Jesse Andrews</title>
      <description>&lt;p&gt;The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008)&lt;/p&gt;</description>
      <pubDate>Wed, 17 Nov 2004 01:05:16 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:13924:47115</guid>
      <author>Jesse Andrews</author>
      <link>http://userscripts.org/posts/47115</link>
    </item>
  </channel>
</rss>
