<?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>Rare Script &#187; javascript</title>
	<atom:link href="http://rarescript.com/category/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://rarescript.com</link>
	<description>Solutions to unusual problems in Javascript, PHP and other scripts.</description>
	<lastBuildDate>Mon, 30 Mar 2009 11:59:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>javascript command interpreter</title>
		<link>http://rarescript.com/javascript-command-interpreter/</link>
		<comments>http://rarescript.com/javascript-command-interpreter/#comments</comments>
		<pubDate>Thu, 03 Jan 2008 14:04:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[all]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://rarescript.com/javascript-command-interpreter/</guid>
		<description><![CDATA[If you looking for a way of using javascript independent of a browser then this article could be what you are looking for.
If you are looking for a javascript command line interpreter you should really consider using Firebug.

http://www.getfirebug.com/
Firebug integrates with Firefox to put a wealth of development tools at your fingertips while you browse. You [...]]]></description>
			<content:encoded><![CDATA[<p>If you looking for a way of using javascript independent of a browser then <a href="http://www.thefrontside.net/blog/learning_javascript_from_the_command_line">this article</a> could be what you are looking for.</p>
<p>If you are looking for a javascript command line interpreter you should really consider using Firebug.</p>
<p><span id="more-9"></span></p>
<p><a href="http://www.getfirebug.com/" title="Firebug">http://www.getfirebug.com/</a></p>
<p>Firebug integrates with Firefox to put a wealth of development tools at your fingertips while you browse. You can edit, debug, and monitor CSS, HTML, and JavaScript live in any web page.</p>
<p>Firebug includes a powerful JavaScript debugger that lets you pause execution at any time and have look at the state of the world. If your code is a little sluggish, use the JavaScript profiler to measure performance and find bottlenecks fast.</p>
<p>Having a fancy JavaScript debugger is great, but sometimes the fastest way to find bugs is just to dump as much information to the console as you can. Firebug gives you a set of powerful logging functions that help you get answers fast.</p>
]]></content:encoded>
			<wfw:commentRss>http://rarescript.com/javascript-command-interpreter/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>javascript change radio button properties</title>
		<link>http://rarescript.com/javascript-change-radio-button-properties/</link>
		<comments>http://rarescript.com/javascript-change-radio-button-properties/#comments</comments>
		<pubDate>Thu, 03 Jan 2008 13:38:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[all]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://rarescript.com/javascript-change-radio-button-properties/</guid>
		<description><![CDATA[How do you change a radio control in a form using javascript?
Read this article to find out

Lets assume we have a simple Form with a 2 state radio button

&#60;form name=&#34;example&#34;&#62;
One:
&#60;input name=&#34;test&#34; type=&#34;radio&#34; /&#62;
Two:
&#60;input name=&#34;test&#34; type=&#34;radio&#34; /&#62;
&#60;/form&#62;

We can set the first to be checked like this&#8230;

&#60;script type=&#34;text/javascript&#34;&#62;
&#60;!--
document.example.test&#91;0&#93;.checked = true;
//--&#62;
&#60;/script&#62;

and the second to be checked like this&#8230;

&#60;script [...]]]></description>
			<content:encoded><![CDATA[<p>How do you change a radio control in a form using javascript?</p>
<p>Read this article to find out</p>
<p><span id="more-8"></span></p>
<p>Lets assume we have a simple Form with a 2 state radio button</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;form name=&quot;example&quot;&gt;
One:
&lt;input name=&quot;test&quot; type=&quot;radio&quot; /&gt;
Two:
&lt;input name=&quot;test&quot; type=&quot;radio&quot; /&gt;
&lt;/form&gt;</pre></div></div>

<p>We can set the first to be checked like this&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;!--</span>
document.<span style="color: #660066;">example</span>.<span style="color: #660066;">test</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#93;</span>.<span style="color: #660066;">checked</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #339933;">;</span>
<span style="color: #006600; font-style: italic;">//--&gt;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p>and the second to be checked like this&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;!--</span>
document.<span style="color: #660066;">example</span>.<span style="color: #660066;">test</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">1</span><span style="color: #009900;">&#93;</span>.<span style="color: #660066;">checked</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #339933;">;</span>
<span style="color: #006600; font-style: italic;">//--&gt;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p>Some other sites that might help you :</p>
<p><a href="http://www.webmasterworld.com/forum91/889.htm">http://www.webmasterworld.com/forum91/889.htm</a><br />
<a href="http://www.javascriptkit.com/javatutors/radiocheck.shtml">http://www.javascriptkit.com/javatutors/radiocheck.shtml</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rarescript.com/javascript-change-radio-button-properties/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>javascript radio button tree</title>
		<link>http://rarescript.com/javascript-radio-button-tree/</link>
		<comments>http://rarescript.com/javascript-radio-button-tree/#comments</comments>
		<pubDate>Thu, 03 Jan 2008 12:27:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[all]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://rarescript.com/javascript-radio-button-tree/</guid>
		<description><![CDATA[Here is a really good example of a radio button tree
http://www.blueshoes.org/en/javascript/tree/
]]></description>
			<content:encoded><![CDATA[<p>Here is a really good example of a radio button tree</p>
<p><a title="www.blueshoes.org" href="http://www.blueshoes.org/en/javascript/tree/">http://www.blueshoes.org/en/javascript/tree/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rarescript.com/javascript-radio-button-tree/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
