<?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; Javascript</title>
	<atom:link href="http://www.phpjavascript.com/category/javascript/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>Form validation by adding classes to form elements</title>
		<link>http://www.phpjavascript.com/form-validation-by-adding-classes-to-form-elements/</link>
		<comments>http://www.phpjavascript.com/form-validation-by-adding-classes-to-form-elements/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 10:05:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=440</guid>
		<description><![CDATA[Form validation is made so easy using YUI JSValidate script. Click here to download and learn how to use it.
Basically there is nothing to learn there just add classname &#8216;jsrequired&#8217; to every form element you need the user to enter and likewise.
]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/form-validation-by-adding-classes-to-form-elements/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>
		<item>
		<title>new window mootools</title>
		<link>http://www.phpjavascript.com/new-window-mootools/</link>
		<comments>http://www.phpjavascript.com/new-window-mootools/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 05:56:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mootools]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=348</guid>
		<description><![CDATA[Download.
Open a new window using mootools with html element, swf, images, ajax content more with lightbox effect.
An excellent new window to display data in an attractive manner. Use mootools which is a javascript framework, all you have to do is add reference to the mootools javascript file with some css and you are good to [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/new-window-mootools/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mootools and scriptaculous javascript framework with css</title>
		<link>http://www.phpjavascript.com/mootools-and-scriptaculous-javascript-framework-with-css/</link>
		<comments>http://www.phpjavascript.com/mootools-and-scriptaculous-javascript-framework-with-css/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 05:53:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development Guide]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=346</guid>
		<description><![CDATA[The power of javascript, css and ajax put together to produce the magic of web development.
Check out scriptaculous and mootools. These javascript libraries with limitless functionality to make impressive and unique websites. Than of course we have ajax for the server side programming.
http://24ways.org/2005/introduction-to-scriptaculous-effects 

http://web-kreation.com/index.php/articles/48-incredible-mootools-sripts/
Mootools tutorials &#8211; http://www.mootorial.com/wiki/
Mootools practical examples &#8211; http://sixrevisions.com/javascript/mootools_tutorials_and_example/
Try this a very simple [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/mootools-and-scriptaculous-javascript-framework-with-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interactive websites using javascript effects ajax speed</title>
		<link>http://www.phpjavascript.com/interactive-websites-using-javascript-effects-ajax-speed/</link>
		<comments>http://www.phpjavascript.com/interactive-websites-using-javascript-effects-ajax-speed/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 05:46:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development Guide]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=342</guid>
		<description><![CDATA[Check out scriptaculous and mootools. These javascript libraries with limitless functionality to make impressive and unique websites. Than of course we have ajax for the server side programming.
Check out scriptaculous and mootools. These javascript libraries with limitless functionality to make impressive and unique websites. Than of course we have ajax for the server side programming.
http://24ways.org/2005/introduction-to-scriptaculous-effects [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/interactive-websites-using-javascript-effects-ajax-speed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript new window div effects</title>
		<link>http://www.phpjavascript.com/javascript-new-window-div-effects/</link>
		<comments>http://www.phpjavascript.com/javascript-new-window-div-effects/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 05:44:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=340</guid>
		<description><![CDATA[World class javascript effects new window. Every possible effect is available here fading, sliding, shrinking, expanding etc
Click here to check the source site
I will upload a customized example with respect to a PHP website soon.
In the mean time download the sample from the top of this webpage.
Sorry guys for my absence but life is so [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/javascript-new-window-div-effects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
