<?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>KaveriTech Technical Blog &#187; Javascript</title>
	<atom:link href="http://techblog.kaveritech.com/category/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://techblog.kaveritech.com</link>
	<description>Findings, Tips &#38; Tricks</description>
	<lastBuildDate>Tue, 25 May 2010 12:48:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Prototype: Find elements by class name &#8211; $$ method</title>
		<link>http://techblog.kaveritech.com/2010/01/16/prototype-find-elements-by-class-name-method/</link>
		<comments>http://techblog.kaveritech.com/2010/01/16/prototype-find-elements-by-class-name-method/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 18:24:03 +0000</pubDate>
		<dc:creator>Satish Natarajan</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://techblog.kaveritech.com/?p=458</guid>
		<description><![CDATA[Suppose you want to hide all the elements with the class name &#8220;foo&#8221; here is how you can do it using the $$ operator
 $$(&#8217;.foo&#8217;).each(Element.hide);  &#8212; Notice the &#8220;(dot)foo&#8221;
]]></description>
			<content:encoded><![CDATA[<p>Suppose you want to hide all the elements with the class name &#8220;foo&#8221; here is how you can do it using the $$ operator</p>
<p> $$(&#8217;.foo&#8217;).each(Element.hide);  &#8212; Notice the &#8220;(dot)foo&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.kaveritech.com/2010/01/16/prototype-find-elements-by-class-name-method/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE &#8211; checkbox onchange event</title>
		<link>http://techblog.kaveritech.com/2010/01/05/ie-checkbox-onchange-event/</link>
		<comments>http://techblog.kaveritech.com/2010/01/05/ie-checkbox-onchange-event/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 05:50:56 +0000</pubDate>
		<dc:creator>satya</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[onchange]]></category>
		<category><![CDATA[onclick]]></category>

		<guid isPermaLink="false">http://techblog.kaveritech.com/?p=433</guid>
		<description><![CDATA[Onchange-event and IE are no friends. Well, it took time for me to find this out.
Yes, IE does not support onchange event.
But NS and Mozilla do.
Solution: Use the onclick event to accomplish the same. This way, all the browsers will be  
  
]]></description>
			<content:encoded><![CDATA[<p>Onchange-event and IE are no friends. Well, it took time for me to find this out.</p>
<p>Yes, IE does not support onchange event.</p>
<p>But NS and Mozilla do.</p>
<p><strong>Solution:</strong> Use the onclick event to accomplish the same. This way, all the browsers will be <img src='http://techblog.kaveritech.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><span style="font-family: verdana; color: #000000; font-size: x-small;"><strong style="color: black; background-color: #bbbbff;"> </strong><strong style="color: black; background-color: #bbffff;"> </strong></span></p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.kaveritech.com/2010/01/05/ie-checkbox-onchange-event/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>IE7: JavaScript Error: Object doesn&#8217;t support this property or Method</title>
		<link>http://techblog.kaveritech.com/2009/09/01/ie7-javascript-error-object-doesnt-support-this-property-or-method/</link>
		<comments>http://techblog.kaveritech.com/2009/09/01/ie7-javascript-error-object-doesnt-support-this-property-or-method/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 16:05:33 +0000</pubDate>
		<dc:creator>Satish Natarajan</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://techblog.kaveritech.com/?p=223</guid>
		<description><![CDATA[I found this this morning..
Object doesn&#8217;t support this property or Method. This turned out to be that in IE7 all javascript variables need to declared before use. So if you have say my_var1 you would want to put &#8220;var my_var1;&#8221; at the beginning of the script before assigning any value to it.
Oh I like new [...]]]></description>
			<content:encoded><![CDATA[<p>I found this this morning..</p>
<p>Object doesn&#8217;t support this property or Method. This turned out to be that in IE7 all javascript variables need to declared before use. So if you have say my_var1 you would want to put &#8220;var my_var1;&#8221; at the beginning of the script before assigning any value to it.</p>
<p>Oh I like new browsers (more fault tolerant) however lot of folks use IE7 at this time.</p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.kaveritech.com/2009/09/01/ie7-javascript-error-object-doesnt-support-this-property-or-method/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
