<?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>codezyne.com &#187; Codes</title>
	<atom:link href="http://codezyne.com/category/codes/feed/" rel="self" type="application/rss+xml" />
	<link>http://codezyne.com</link>
	<description>innovative way of thinking</description>
	<lastBuildDate>Thu, 17 Feb 2011 23:36:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>The clientWidth, innerWidth, top, left are returning 0 value</title>
		<link>http://codezyne.com/2009/12/10/the-clientwidth-innerwidth-top-left-are-returning-0-value/</link>
		<comments>http://codezyne.com/2009/12/10/the-clientwidth-innerwidth-top-left-are-returning-0-value/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 15:35:36 +0000</pubDate>
		<dc:creator>Radgeofrey Mission</dc:creator>
				<category><![CDATA[Codes]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[0]]></category>
		<category><![CDATA[clientHeight]]></category>
		<category><![CDATA[clientWidth]]></category>
		<category><![CDATA[innerHeight]]></category>
		<category><![CDATA[innerWidth]]></category>
		<category><![CDATA[left]]></category>
		<category><![CDATA[top]]></category>
		<category><![CDATA[zero value]]></category>

		<guid isPermaLink="false">http://codezyne.com/?p=119</guid>
		<description><![CDATA[Sometimes when you need to get elements position like top and left,  or width and height, they always return zero value, or lesser to what we expected. Sometimes this problem occurred to elements display value.  So for quick fix, i used this code. jQuery var width = $(&#8216;#hiddendiv&#8217;).css({display:&#8221;",visibility:&#8221;hidden&#8221;}).innerWidth(); $(&#8216;#hiddendiv&#8217;).css({display:&#8221;none&#8221;,visibility:&#8221;visible&#8221;}); Javascript var obj = document.getElementById(&#8216;hiddendiv&#8217;); obj.style.visibility=&#8221;hidden&#8221;; obj.style.display=&#8221;"; [...]]]></description>
		<wfw:commentRss>http://codezyne.com/2009/12/10/the-clientwidth-innerwidth-top-left-are-returning-0-value/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What if html() method won&#8217;t work on IE?</title>
		<link>http://codezyne.com/2009/12/08/what-if-html-method-wont-work-on-ie/</link>
		<comments>http://codezyne.com/2009/12/08/what-if-html-method-wont-work-on-ie/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 17:07:26 +0000</pubDate>
		<dc:creator>Radgeofrey Mission</dc:creator>
				<category><![CDATA[Codes]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[html()]]></category>
		<category><![CDATA[not working]]></category>

		<guid isPermaLink="false">http://codezyne.com/?p=12</guid>
		<description><![CDATA[I just stumbled an error in IE using html() method for altering html content of elements and I even using the latest version/stable of jquery. And some part of the scripts are really working using html(), some are not.  So I did a quick fix to overload html() method to work for IE. Code : [...]]]></description>
		<wfw:commentRss>http://codezyne.com/2009/12/08/what-if-html-method-wont-work-on-ie/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Reversing elements in jQuery</title>
		<link>http://codezyne.com/2009/12/08/reversing-elements-in-jquery/</link>
		<comments>http://codezyne.com/2009/12/08/reversing-elements-in-jquery/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 16:40:33 +0000</pubDate>
		<dc:creator>Radgeofrey Mission</dc:creator>
				<category><![CDATA[Codes]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[element]]></category>
		<category><![CDATA[reverse]]></category>
		<category><![CDATA[reversing]]></category>

		<guid isPermaLink="false">http://codezyne.com/?p=8</guid>
		<description><![CDATA[I made a fade in/out gallery using jquery.  And images are positioned as absolute,  so the last image element is always on top.  And my solution to make the first element on top is this. Code: var elements = $(&#8216;.imagetransition&#8217;).get().reverse(); $(&#8216;#gallerycontainer&#8217;).html(&#8221;).append(elements); Explanation :  get() will return the array elements of $(&#8216;.imagetransition&#8217;), and reverse() is a [...]]]></description>
		<wfw:commentRss>http://codezyne.com/2009/12/08/reversing-elements-in-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

