<?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>Jorge Pedret &#187; jQuery</title>
	<atom:link href="http://jorgepedret.com/topics/web-development/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://jorgepedret.com</link>
	<description>Freelance Web Developer + Front End Designer</description>
	<lastBuildDate>Wed, 16 May 2012 21:32:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>jQuery script for scrolling smoothly</title>
		<link>http://jorgepedret.com/web-development/jquery/jquery-script-for-scrolling-smoothly/</link>
		<comments>http://jorgepedret.com/web-development/jquery/jquery-script-for-scrolling-smoothly/#comments</comments>
		<pubDate>Thu, 09 Sep 2010 18:43:50 +0000</pubDate>
		<dc:creator>Jorge Pedret</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[scroll]]></category>
		<category><![CDATA[snippet]]></category>

		<guid isPermaLink="false">http://jorgepedret.com/?p=178</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<pre class="brush: jscript; title: ; notranslate">$('html,body').animate({ scrollTop: $(selector).offset().top }, { duration: 'slow', easing: 'swing'});</pre>
]]></content:encoded>
			<wfw:commentRss>http://jorgepedret.com/web-development/jquery/jquery-script-for-scrolling-smoothly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use jQuery to select child element</title>
		<link>http://jorgepedret.com/web-development/use-jquery-to-select-child-element/</link>
		<comments>http://jorgepedret.com/web-development/use-jquery-to-select-child-element/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 01:12:30 +0000</pubDate>
		<dc:creator>Jorge Pedret</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[reminder]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://jorgepedret.com/blog/?p=45</guid>
		<description><![CDATA[Suppose you have the following structure: This code will let you access the child elements of &#8216;.section&#8217; when you use an &#8216;each&#8217; function I hope this helps someone, I kept forgetting how to do this, so this is mostly a reminder for myself. Source: http://stackoverflow.com/questions/306583/jquery-this-selector-and-children/306904#306904]]></description>
			<content:encoded><![CDATA[<p>Suppose you have the following structure:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;div class=&quot;section&quot;&gt;
	&lt;h3 class=&quot;title&quot;&gt;Title&lt;/h3&gt;
	&lt;span class=&quot;description&quot;&gt;...&lt;/span&gt;
&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
	&lt;h3 class=&quot;title&quot;&gt;Title&lt;/h3&gt;
	&lt;span class=&quot;description&quot;&gt;...&lt;/span&gt;
&lt;/div&gt;
</pre>
<p>This code will let you access the child elements of &#8216;.section&#8217; when you use an &#8216;each&#8217; function</p>
<pre class="brush: jscript; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;&gt;
$(function(){
	$('.section').each(function(i,element){
		$('description',this).fadeOut(100).fadeIn(100).fadeOut(100).fadeIn(100);
	});
});
&lt;/script&gt;
</pre>
<p>I hope this helps someone, I kept forgetting how to do this, so this is mostly a reminder for myself.<br />
Source: http://stackoverflow.com/questions/306583/jquery-this-selector-and-children/306904#306904</p>
]]></content:encoded>
			<wfw:commentRss>http://jorgepedret.com/web-development/use-jquery-to-select-child-element/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to fix z-index problem in ie7 with jQuery?</title>
		<link>http://jorgepedret.com/web-development/how-to-fix-z-index-problem-in-ie7-with-jquery/</link>
		<comments>http://jorgepedret.com/web-development/how-to-fix-z-index-problem-in-ie7-with-jquery/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 03:50:47 +0000</pubDate>
		<dc:creator>Jorge Pedret</dc:creator>
				<category><![CDATA[bug]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[IE7]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[z-index]]></category>

		<guid isPermaLink="false">http://www.jorgepedret.com/blog/?p=5</guid>
		<description><![CDATA[A quick post, I was just having problems in my website with my beautiful picture showing on top of everything. It was showing fine in FF but in Internet Explorer 7 it was showing behind, so you could only see like half of my face and that&#8217;s not fare for anyone. I found this cool [...]]]></description>
			<content:encoded><![CDATA[<p>A quick post, I was just having problems in my website with my beautiful picture showing on top of everything. It was showing fine in FF but in Internet Explorer 7 it was showing behind, so you could only see like half of my face and that&#8217;s not fare for anyone.</p>
<p>I found this <a class="external" title="Vance Lucas Website" rel="colleage" href="http://www.vancelucas.com/blog/fixing-ie7-z-index-issues-with-jquery/" target="_blank">cool website</a> where I read that ie7 does something weird with the stack order when it renders the page and solves the problem using jQuery. Surprisingly I just copied and pasted the code (after analyzing it of course) and it fixed my problem!</p>
<p>Here is the code! for more details on this solution go to <a href="http://www.vancelucas.com/blog/fixing-ie7-z-index-issues-with-jquery/" target="_blank">Vance Lucas Website</a></p>
<pre class="brush: jscript; title: ; notranslate">

$(function() {
	var zIndexNumber = 1000;
	$('div').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});
});
</pre>
]]></content:encoded>
			<wfw:commentRss>http://jorgepedret.com/web-development/how-to-fix-z-index-problem-in-ie7-with-jquery/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

