<?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>Coder Circle &#187; java script</title>
	<atom:link href="http://www.codercircle.com/tag/java_script/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codercircle.com</link>
	<description>Your Path for Knowledge to Wisdom</description>
	<lastBuildDate>Tue, 04 May 2010 01:26:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How To Access Cookie Without any special Charecters</title>
		<link>http://www.codercircle.com/scripts/how_to_access_cookie_without_any_special_charecters/</link>
		<comments>http://www.codercircle.com/scripts/how_to_access_cookie_without_any_special_charecters/#comments</comments>
		<pubDate>Fri, 25 Jan 2008 19:15:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[handling cookies]]></category>
		<category><![CDATA[java script]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[special character]]></category>

		<guid isPermaLink="false">http://www.codercircle.com/index.php/2008/01/26/how_to_access_cookie_without_any_special_charecters/</guid>
		<description><![CDATA[Generally, when we access javascript, wild card charecters are replaced by some special symbols (like +,% etc). This code is for accessing cookie value withour any special chacters. Try It. //Reading Cookie function ReadCookie(n) { var cookiecontent = new String(); &#8230; <a href="http://www.codercircle.com/scripts/how_to_access_cookie_without_any_special_charecters/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.codercircle.com/scripts/how_to_access_cookie_without_any_special_charecters/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Handling forms in Javascript</title>
		<link>http://www.codercircle.com/scripts/handling_forms_in_javascript/</link>
		<comments>http://www.codercircle.com/scripts/handling_forms_in_javascript/#comments</comments>
		<pubDate>Fri, 25 Jan 2008 19:13:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[form in javascript]]></category>
		<category><![CDATA[java script]]></category>

		<guid isPermaLink="false">http://www.codercircle.com/index.php/2008/01/26/handling_forms_in_javascript/</guid>
		<description><![CDATA[This lesson will give an idea how to start using javascripts in forms &#60;HTML&#62; &#60;BODY&#62; &#60;SCRIPT LANGUAGE=javascript&#62; &#60;!&#8211;      function f1(){      document.write(MyForm.name,&#8221;&#60;Br&#62;&#8221;,MyForm.textname.value,&#8221;&#60;Br&#62;&#8221;,MyForm.length)      } //&#8211;&#62; &#60;/SCRIPT&#62; &#60;/BODY&#62; &#60;FORM action=&#8221;" method=POST name=MyForm onclick=&#8221;f1()&#8221;&#62; &#60;INPUT type=&#8221;text&#8221; name=textname value=&#8221;Broken Arrow&#8221;&#62; &#60;/FORM&#62; &#60;/HTML&#62;]]></description>
		<wfw:commentRss>http://www.codercircle.com/scripts/handling_forms_in_javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Iteration in JavaScript</title>
		<link>http://www.codercircle.com/scripts/iteration_in_javascript/</link>
		<comments>http://www.codercircle.com/scripts/iteration_in_javascript/#comments</comments>
		<pubDate>Fri, 25 Jan 2008 19:12:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[iteration]]></category>
		<category><![CDATA[java script]]></category>

		<guid isPermaLink="false">http://www.codercircle.com/index.php/2008/01/26/iteration_in_javascript/</guid>
		<description><![CDATA[A lesson for the beginners &#8211; how to use iteration in Javascript &#60;html&#62; &#60;body&#62; &#60;script&#62;    &#60;!&#8211;            b=1                  while (b&#62;6){                 b= document.write(b);b+1;            }            document.write(b,”&#60;br&#62;”);       &#8211;&#62; &#60;/script&#62; &#60;/body&#62; &#60;/html&#62;]]></description>
		<wfw:commentRss>http://www.codercircle.com/scripts/iteration_in_javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alert in Javascript</title>
		<link>http://www.codercircle.com/scripts/alert_in_javascript/</link>
		<comments>http://www.codercircle.com/scripts/alert_in_javascript/#comments</comments>
		<pubDate>Fri, 25 Jan 2008 10:10:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[java script]]></category>
		<category><![CDATA[scripting languages]]></category>

		<guid isPermaLink="false">http://www.codercircle.com/index.php/2008/01/25/alert_in_javascript/</guid>
		<description><![CDATA[This lesson will help the beginners to handle alerts in JavaScripts &#60;html&#62; &#60;head&#62; &#60;script language=&#8221;javascript&#8221;&#62; &#60;!&#8211; function f1()  {  alert(&#8220;Skill Hut&#8221;); // Message ‘Skill Hut’ will be displayed  } &#8211;&#62; &#60;/SCRIPT&#62; &#60;/head&#62; &#60;body color=white&#62; Move your mouse over &#60;a href=&#8221;" &#8230; <a href="http://www.codercircle.com/scripts/alert_in_javascript/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.codercircle.com/scripts/alert_in_javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

