<?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>Tech aspirant - The ultimate technology Blog &#187; javascript</title>
	<atom:link href="http://www.techaspirant.com/tag/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techaspirant.com</link>
	<description>My thoughts and finding in brief...arunrajr</description>
	<lastBuildDate>Wed, 18 Aug 2010 07:52:38 +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>Toggle visibility between none and inline</title>
		<link>http://www.techaspirant.com/toggle-visibility-between-none-and-inline/</link>
		<comments>http://www.techaspirant.com/toggle-visibility-between-none-and-inline/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 06:06:46 +0000</pubDate>
		<dc:creator>R Arun Raj</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[toggle]]></category>
		<category><![CDATA[visibility]]></category>

		<guid isPermaLink="false">http://arunrajr.com/blog/?p=57</guid>
		<description><![CDATA[function toggle_it(itemID){ // Toggle visibility between none and inline if ((document.getElementById(itemID).style.display == &#8216;none&#8217;)) { document.getElementById(itemID).style.display = &#8216;inline&#8217;; } else { document.getElementById(itemID).style.display = &#8216;none&#8217;; } }]]></description>
		<wfw:commentRss>http://www.techaspirant.com/toggle-visibility-between-none-and-inline/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript Frame work</title>
		<link>http://www.techaspirant.com/javascript-frame-work/</link>
		<comments>http://www.techaspirant.com/javascript-frame-work/#comments</comments>
		<pubDate>Fri, 27 Jun 2008 14:00:19 +0000</pubDate>
		<dc:creator>R Arun Raj</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[prototypejs]]></category>

		<guid isPermaLink="false">http://arunrajr.com/blog/?p=32</guid>
		<description><![CDATA[A powerful javascript frame work. ProtoType.Js Prototype is a JavaScript Framework that aims to ease development of dynamic web applications. Featuring a unique, easy-to-use toolkit for class-driven development and the nicest Ajax library around, Prototype is quickly becoming the codebase of choice for web application developers everywhere. http://prototypejs.org]]></description>
		<wfw:commentRss>http://www.techaspirant.com/javascript-frame-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JAVA SCRIPT PAGE REFRESH</title>
		<link>http://www.techaspirant.com/java-script-page-refresh/</link>
		<comments>http://www.techaspirant.com/java-script-page-refresh/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 04:15:11 +0000</pubDate>
		<dc:creator>R Arun Raj</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[refresh]]></category>

		<guid isPermaLink="false">http://arunrajr.com/blog/?p=27</guid>
		<description><![CDATA[&#60;a href=&#8221;#&#8221; onclick=&#8221;javascript:window.location.reload();&#8221;&#62;&#60;strong&#62;refresh&#60;/strong&#62;&#60;/a&#62;]]></description>
		<wfw:commentRss>http://www.techaspirant.com/java-script-page-refresh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to validate Phone number Field using Javascript</title>
		<link>http://www.techaspirant.com/how-to-validate-phone-number-field-using-javascript/</link>
		<comments>http://www.techaspirant.com/how-to-validate-phone-number-field-using-javascript/#comments</comments>
		<pubDate>Fri, 23 May 2008 08:50:03 +0000</pubDate>
		<dc:creator>R Arun Raj</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[validate]]></category>

		<guid isPermaLink="false">http://arunrajr.com/blog/?p=20</guid>
		<description><![CDATA[//phone number validation start var digits = &#8220;0123456789&#8243;; var phoneNumberDelimiters = &#8220;()- &#8220;; var validWorldPhoneChars = phoneNumberDelimiters + &#8220;+&#8221;; var minDigitsInIPhoneNumber = 10; function isInteger(s) {   var i; for (i = 0; i &#60; s.length; i++) { // Check that current character is number. var c = s.charAt(i); if (((c &#60; &#8220;0&#8243;) &#124;&#124; (c &#62; [...]]]></description>
		<wfw:commentRss>http://www.techaspirant.com/how-to-validate-phone-number-field-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to validate image File field using Javascript</title>
		<link>http://www.techaspirant.com/how-to-validate-image-file-field-using-javascript/</link>
		<comments>http://www.techaspirant.com/how-to-validate-image-file-field-using-javascript/#comments</comments>
		<pubDate>Fri, 23 May 2008 07:16:20 +0000</pubDate>
		<dc:creator>R Arun Raj</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[validate]]></category>

		<guid isPermaLink="false">http://arunrajr.com/blog/?p=19</guid>
		<description><![CDATA[&#60;script type=&#8221;text/javascript&#8221;&#62; function validateFileExtension(ld) { if(!/(\.bmp&#124;\.gif&#124;\.jpg&#124;\.jpeg)$/i.test(ld.value)) { alert(&#8220;Invalid image file type.&#8221;); ld.form.reset(); ld.focus(); return false; } return true; } &#60;/script&#62;]]></description>
		<wfw:commentRss>http://www.techaspirant.com/how-to-validate-image-file-field-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to validate Email Address Using Javascript</title>
		<link>http://www.techaspirant.com/how-to-validate-email-address-using-javascript/</link>
		<comments>http://www.techaspirant.com/how-to-validate-email-address-using-javascript/#comments</comments>
		<pubDate>Fri, 23 May 2008 06:21:31 +0000</pubDate>
		<dc:creator>R Arun Raj</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[field]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[validate]]></category>

		<guid isPermaLink="false">http://arunrajr.com/blog/?p=18</guid>
		<description><![CDATA[&#60;script language=”javascript” type=”text/javascript”&#62; function checkemail(id) { var email = document.getElementById(id); var filter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/; if (!filter.test(email.value)) { alert(&#8216;Please provide a valid email address&#8217;); email.focus; return false; } return true; } &#60;/script&#62;]]></description>
		<wfw:commentRss>http://www.techaspirant.com/how-to-validate-email-address-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to validate name field using Javascript</title>
		<link>http://www.techaspirant.com/how-to-validate-name-field-using-javascript/</link>
		<comments>http://www.techaspirant.com/how-to-validate-name-field-using-javascript/#comments</comments>
		<pubDate>Fri, 23 May 2008 05:49:42 +0000</pubDate>
		<dc:creator>R Arun Raj</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[filed]]></category>
		<category><![CDATA[getElementById]]></category>
		<category><![CDATA[name]]></category>
		<category><![CDATA[validate]]></category>

		<guid isPermaLink="false">http://arunrajr.com/blog/?p=17</guid>
		<description><![CDATA[&#60;script language=&#8221;javascript&#8221; type=&#8221;text/javascript&#8221;&#62; function isValidName(id) {   Element=document.getElementById(id); if (Element.value==&#8221;"&#124;&#124;Element.value== 0) { alert(&#8220;Please Enter your Name.&#8221;); Element.focus(); Element.value=&#8221;"; return false; } var rg = new RegExp(/^[A-Za-z\s'.]+$/gi); name=Element.value; if(String(rg.test(name))==&#8217;false&#8217;) { Element.focus(); Element.value=&#8221;"; alert(&#8220;Please Enter A valid Name&#8221;); return false; } } &#60;/script&#62;]]></description>
		<wfw:commentRss>http://www.techaspirant.com/how-to-validate-name-field-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>what is web 2.0</title>
		<link>http://www.techaspirant.com/what-is-web-20/</link>
		<comments>http://www.techaspirant.com/what-is-web-20/#comments</comments>
		<pubDate>Sun, 02 Mar 2008 19:15:56 +0000</pubDate>
		<dc:creator>R Arun Raj</dc:creator>
				<category><![CDATA[web 2.0]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[xml.rss]]></category>

		<guid isPermaLink="false">http://arunrajr.com/blog/?p=7</guid>
		<description><![CDATA[The  Web 2.0 is a standard  for the website that allow users to participate . That means user can participate . They can express their feeling and ideas . The web 2.0 websites seems to be very fast even with multimedia content.This is achieved by the use of CSS. The main technology behind web 2.0 is  AJAX. Thats [...]]]></description>
		<wfw:commentRss>http://www.techaspirant.com/what-is-web-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
