<?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>Learn PHP &#124; Learn CSS &#124; Learn Javascript &#124; Gmail contact importer &#124;  Yahoo contact importer &#124;  Hotmail contact importer &#187; javascript</title>
	<atom:link href="http://php.vidhyapith.com/index.php/category/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://php.vidhyapith.com</link>
	<description>PHP</description>
	<lastBuildDate>Fri, 12 Feb 2010 11:47:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>tab with javascript</title>
		<link>http://php.vidhyapith.com/index.php/2009/08/tab-with-javascript/</link>
		<comments>http://php.vidhyapith.com/index.php/2009/08/tab-with-javascript/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 18:13:34 +0000</pubDate>
		<dc:creator>Elfin Ruler</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[tab]]></category>

		<guid isPermaLink="false">http://php.vidhyapith.com/?p=157</guid>
		<description><![CDATA[1.copy -past below code toyour html page 2.download  jquery.js file from jquery.com &#60;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&#62; &#60;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;&#62; &#60;head&#62; &#60;meta http-equiv=&#8221;Content-Type&#8221; content=&#8221;text/html; charset=utf-8&#8243; /&#62; &#60;title&#62;Untitled Document&#60;/title&#62; &#60;style type=&#8221;text/css&#8221;&#62; &#60;!&#8211; .box_performer {height:268px; width:500px; background:url(images/bg_box.gif); border:1px solid #b7b7b7;} .box_performer img {border:0;} .box_performer .title {float:left; height:24px; font-family:Tahoma; font-size:25px; color:#0d89d1; margin-top:12px; margin-left:20px; width:482px;} .looking {float:left; [...]]]></description>
		<wfw:commentRss>http://php.vidhyapith.com/index.php/2009/08/tab-with-javascript/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>username validation in javascript</title>
		<link>http://php.vidhyapith.com/index.php/2009/06/username-validation-in-javascript/</link>
		<comments>http://php.vidhyapith.com/index.php/2009/06/username-validation-in-javascript/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 09:19:18 +0000</pubDate>
		<dc:creator>Elfin Ruler</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[username validation]]></category>

		<guid isPermaLink="false">http://php.vidhyapith.com/?p=8</guid>
		<description><![CDATA[function ValidateUsername(strng) { var error = &#8220;&#8221;; if (strng.trim() == &#8220;&#8221;) { error = &#8220;Please Enter Username.\n&#8221;; } if(error==&#8221;") { if ((strng.length &#60; 4) &#124;&#124; (strng.length &#62; 20)) { error = &#8220;Please Enter Minimum 4 And Maximum 20 Charactors.\n&#8221;; } } if(error==&#8221;") { var ValidChars = &#8220;._0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ&#8221;; var IsNumber=true; var Char; var str=strng; var dot=&#8221;.&#8221;; [...]]]></description>
		<wfw:commentRss>http://php.vidhyapith.com/index.php/2009/06/username-validation-in-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>email validation  with javascript</title>
		<link>http://php.vidhyapith.com/index.php/2009/06/username-validation-with-javascript/</link>
		<comments>http://php.vidhyapith.com/index.php/2009/06/username-validation-with-javascript/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 09:18:37 +0000</pubDate>
		<dc:creator>Elfin Ruler</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[email validation]]></category>

		<guid isPermaLink="false">http://php.vidhyapith.com/?p=6</guid>
		<description><![CDATA[//******validate email id************* function validateemail(str) { var error = &#8220;&#8221;; if(str.trim()==&#8221;") { error=&#8221;Please Enter Email Address&#8221;; } if (str!=&#8221;") { if(!echeck(str))error=&#8221;Invalid Email Address&#8221;; } return error; } function echeck(str) { var at=&#8221;@&#8221; var dot=&#8221;.&#8221; var lat=str.indexOf(at) var lstr=str.length var ldot=str.indexOf(dot) if (str.indexOf(at)==-1){ // alert(&#8220;Invalid E-mail ID&#8221;) return false } if (str.indexOf(at)==-1 &#124;&#124; str.indexOf(at)==0 &#124;&#124; str.indexOf(at)==lstr){ [...]]]></description>
		<wfw:commentRss>http://php.vidhyapith.com/index.php/2009/06/username-validation-with-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
