<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>&#60;SourceBench/&#62; Your place to share code stuff &#187; jquery</title>
	<atom:link href="http://sourcebench.com/tag/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://sourcebench.com</link>
	<description></description>
	<lastBuildDate>Tue, 04 May 2010 07:57:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Disable right click context menus with jQuery</title>
		<link>http://sourcebench.com/languages/javascript/disable-right-click-context-menus-with-jquery/</link>
		<comments>http://sourcebench.com/languages/javascript/disable-right-click-context-menus-with-jquery/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 14:47:34 +0000</pubDate>
		<dc:creator>The SourceBench</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[context menu]]></category>
		<category><![CDATA[disable]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[right click]]></category>

		<guid isPermaLink="false">http://sourcebench.com/languages/javascript/disable-right-click-context-menus-with-jquery/</guid>
		<description><![CDATA[$(document).ready(function(){
  $(document).bind(&#34;contextmenu&#34;,function(e){
    return false;
  });
});]]></description>
			<content:encoded><![CDATA[<pre class="brush: jscript;">$(document).ready(function(){
  $(document).bind(&quot;contextmenu&quot;,function(e){
    return false;
  });
});</pre>]]></content:encoded>
			<wfw:commentRss>http://sourcebench.com/languages/javascript/disable-right-click-context-menus-with-jquery/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Add an image to all external links (identified by the class extlinks)</title>
		<link>http://sourcebench.com/languages/javascript/add-an-image-to-all-external-links-identified-by-the-class-extlinks/</link>
		<comments>http://sourcebench.com/languages/javascript/add-an-image-to-all-external-links-identified-by-the-class-extlinks/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 23:32:07 +0000</pubDate>
		<dc:creator>The SourceBench</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[external links]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://sourcebench.com/languages/javascript/add-an-image-to-all-external-links-identified-by-the-class-extlinks/</guid>
		<description><![CDATA[$(document).ready(function() {
  $('#extlinks a').filter(function() {
 return this.hostname &#38;&#38; this.hostname !== location.hostname;
  }).after(' &#60;img src=&#34;/images/external.png&#34; alt=&#34;external link&#34;/&#62;');
});]]></description>
			<content:encoded><![CDATA[<pre class="brush: jscript;">$(document).ready(function() {
  $('#extlinks a').filter(function() {
 return this.hostname &amp;&amp; this.hostname !== location.hostname;
  }).after(' &lt;img src=&quot;/images/external.png&quot; alt=&quot;external link&quot;/&gt;');
});</pre>]]></content:encoded>
			<wfw:commentRss>http://sourcebench.com/languages/javascript/add-an-image-to-all-external-links-identified-by-the-class-extlinks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
