<?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>PHPJavascript &#187; jquery</title>
	<atom:link href="http://www.phpjavascript.com/category/javascript/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phpjavascript.com</link>
	<description>Web Development Guide - My Personal Library of Tutorials and Scripts</description>
	<lastBuildDate>Tue, 27 Jul 2010 10:57:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Disable right click</title>
		<link>http://www.phpjavascript.com/disable-right-click/</link>
		<comments>http://www.phpjavascript.com/disable-right-click/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 09:14:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development Guide]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=483</guid>
		<description><![CDATA[Use jquery to disable right click
Add the following code in the &#60;head&#62; of your webpage
&#60;script type=&#8221;text/javascript&#8221;&#62;
$(document).ready(function(){
$(&#8221;img&#8221;).bind(&#8221;contextmenu&#8221;,function(e){
return false;
});
});
&#60;/script&#62;
I had used this on my drupal site in page.tpl file
]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/disable-right-click/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>flash catalog or brochure page turning effect</title>
		<link>http://www.phpjavascript.com/flash-catalog-or-brochure-page-turning-effect/</link>
		<comments>http://www.phpjavascript.com/flash-catalog-or-brochure-page-turning-effect/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 10:00:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development Guide]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=402</guid>
		<description><![CDATA[Demo
One my client wanted to have an e-catalog on his website now my flash is real basic so I tried to mimic a e-catalog or book page turning effect using jquery with a tutorial i found on sitepoint. But it wasnt working for me, did not look very professional plus it didn&#8217;t have the required [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/flash-catalog-or-brochure-page-turning-effect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>flashy intro jquey unstable IE or not working in IE7</title>
		<link>http://www.phpjavascript.com/flashy-intro-jquey-unstable-ie-or-not-working-in-ie7/</link>
		<comments>http://www.phpjavascript.com/flashy-intro-jquey-unstable-ie-or-not-working-in-ie7/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 06:18:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=364</guid>
		<description><![CDATA[Download
Wonderful animation build using jquery was initially unstable in IE but with the a few changes in the script works like a charm EVEN in IE.
Who made IE, crappy but the most popular browser on the web.
The original script is available here.
Download the jquery.color.js and index.html from this webpage and over wirte the files available [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/flashy-intro-jquey-unstable-ie-or-not-working-in-ie7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Browser detection with version using jquery</title>
		<link>http://www.phpjavascript.com/browser-detection-with-version-using-jquery/</link>
		<comments>http://www.phpjavascript.com/browser-detection-with-version-using-jquery/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 06:13:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=359</guid>
		<description><![CDATA[Use jquery to detect browser name, version and web development tools
Check out http://www.visualjquery.com/ to resolve browser detection and other web development issues.
Remember to install jquery first on your website.
]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/browser-detection-with-version-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lightbox without mootools, jquery only simple javascript fade effect</title>
		<link>http://www.phpjavascript.com/lightbox-without-mootools-jquery-only-simple-javascript-fade-effect/</link>
		<comments>http://www.phpjavascript.com/lightbox-without-mootools-jquery-only-simple-javascript-fade-effect/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 06:04:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=355</guid>
		<description><![CDATA[Simplest lightbox ever using the javascript display effect.
My mootools, jquery lightbox was not working as it was clashing with my mootools menu and the header !&#8211; doc  issue
So i used the following lightbox
http://www.emanueleferonato.com/downloads/lightbox.html
]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/lightbox-without-mootools-jquery-only-simple-javascript-fade-effect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
