<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Using jQuery with WordPress</title>
	<atom:link href="http://themocracy.com/2009/04/using-jquery-with-wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://themocracy.com/2009/04/using-jquery-with-wordpress/</link>
	<description>WordPress Theme Design</description>
	<lastBuildDate>Wed, 04 Jan 2012 00:15:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Travis</title>
		<link>http://themocracy.com/2009/04/using-jquery-with-wordpress/comment-page-1/#comment-1904</link>
		<dc:creator>Travis</dc:creator>
		<pubDate>Wed, 04 Jan 2012 00:15:58 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/themocracy/?p=3#comment-1904</guid>
		<description>1) If you&#039;re not already using Chrome, you should and use Google Developer tools to help you probe sites

So using Developer Tools if you pause script execution on the site you&#039;ll see that when you mouse over one of those images a call to jQuery&#039;s event handler is made. Therefore, one can infer that they used something like $(img_id_or_class).mouseOver(function(){list.hide()}); or something similar. If you don&#039;t feel like figuring it out, you could&#039;ve easily looked in the source code and found the following:
$(document).ready(function() {
	$(&quot;div.block-box&quot;).find(&#039;ul.over-hide&#039;).hide();
	$(&quot;div.block-box&quot;).mouseover(function(){
		$(this).find(&#039;ul.over-hide&#039;).show();
	})
	$(&quot;div.block-box&quot;).mouseout(function(){
		$(this).find(&#039;ul.over-hide&#039;).hide();
	})
});

This should get you started in the right direction ;)</description>
		<content:encoded><![CDATA[<p>1) If you&#8217;re not already using Chrome, you should and use Google Developer tools to help you probe sites</p>
<p>So using Developer Tools if you pause script execution on the site you&#8217;ll see that when you mouse over one of those images a call to jQuery&#8217;s event handler is made. Therefore, one can infer that they used something like $(img_id_or_class).mouseOver(function(){list.hide()}); or something similar. If you don&#8217;t feel like figuring it out, you could&#8217;ve easily looked in the source code and found the following:<br />
$(document).ready(function() {<br />
	$(&#8220;div.block-box&#8221;).find(&#8216;ul.over-hide&#8217;).hide();<br />
	$(&#8220;div.block-box&#8221;).mouseover(function(){<br />
		$(this).find(&#8216;ul.over-hide&#8217;).show();<br />
	})<br />
	$(&#8220;div.block-box&#8221;).mouseout(function(){<br />
		$(this).find(&#8216;ul.over-hide&#8217;).hide();<br />
	})<br />
});</p>
<p>This should get you started in the right direction <img src='http://themocracy.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Travis</title>
		<link>http://themocracy.com/2009/04/using-jquery-with-wordpress/comment-page-1/#comment-1903</link>
		<dc:creator>Travis</dc:creator>
		<pubDate>Wed, 04 Jan 2012 00:05:33 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/themocracy/?p=3#comment-1903</guid>
		<description>Also, merely food for thought, but have you tried just using the :active CSS pseudo-class to change the look of your mainlinks when they are selected? Assuming that this is what you&#039;re trying to do (what I deduced from your code snippet; sorry if I&#039;m completely wrong lol), and you&#039;re not worried about the main link staying selected when you navigate to a child page within that main link, it could be easier for you and save you the js overhead.</description>
		<content:encoded><![CDATA[<p>Also, merely food for thought, but have you tried just using the :active CSS pseudo-class to change the look of your mainlinks when they are selected? Assuming that this is what you&#8217;re trying to do (what I deduced from your code snippet; sorry if I&#8217;m completely wrong lol), and you&#8217;re not worried about the main link staying selected when you navigate to a child page within that main link, it could be easier for you and save you the js overhead.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Travis</title>
		<link>http://themocracy.com/2009/04/using-jquery-with-wordpress/comment-page-1/#comment-1902</link>
		<dc:creator>Travis</dc:creator>
		<pubDate>Wed, 04 Jan 2012 00:00:54 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/themocracy/?p=3#comment-1902</guid>
		<description>you can try changing all of &quot;$&quot; symbols to &quot;jQuery,&quot; or you can try - as the blog author suggested - adding &quot;$&quot; (no quotes) as an argument to your initial function, i.e. jQuery(document).ready(function($){...}); This will keep the scope of the identifier symbol $ local to your jQuery call, and therefore won&#039;t interfere with Prototype.</description>
		<content:encoded><![CDATA[<p>you can try changing all of &#8220;$&#8221; symbols to &#8220;jQuery,&#8221; or you can try &#8211; as the blog author suggested &#8211; adding &#8220;$&#8221; (no quotes) as an argument to your initial function, i.e. jQuery(document).ready(function($){&#8230;}); This will keep the scope of the identifier symbol $ local to your jQuery call, and therefore won&#8217;t interfere with Prototype.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andre</title>
		<link>http://themocracy.com/2009/04/using-jquery-with-wordpress/comment-page-1/#comment-1648</link>
		<dc:creator>Andre</dc:creator>
		<pubDate>Sat, 01 May 2010 09:14:25 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/themocracy/?p=3#comment-1648</guid>
		<description>Just to point out that the jquery noConflict does work in wordpress 2.x
by doing $jq = jQuery.noConflict(); or if that fails then
$jq = jQuery.noConflict(true);

It has worked for me two different wordpress 2.x installations.</description>
		<content:encoded><![CDATA[<p>Just to point out that the jquery noConflict does work in wordpress 2.x<br />
by doing $jq = jQuery.noConflict(); or if that fails then<br />
$jq = jQuery.noConflict(true);</p>
<p>It has worked for me two different wordpress 2.x installations.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: joomlawind</title>
		<link>http://themocracy.com/2009/04/using-jquery-with-wordpress/comment-page-1/#comment-1134</link>
		<dc:creator>joomlawind</dc:creator>
		<pubDate>Fri, 12 Feb 2010 05:20:40 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/themocracy/?p=3#comment-1134</guid>
		<description>Thanks for the detailed explanation of source code........</description>
		<content:encoded><![CDATA[<p>Thanks for the detailed explanation of source code&#8230;&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Celebrate jQuery in WordPress and WordPress Plugins: jQuery Turns 4 &#124; WordCast - Blogging news, WordPress help, WordPress plugins, WordPress themes, WordPress news</title>
		<link>http://themocracy.com/2009/04/using-jquery-with-wordpress/comment-page-1/#comment-966</link>
		<dc:creator>Celebrate jQuery in WordPress and WordPress Plugins: jQuery Turns 4 &#124; WordCast - Blogging news, WordPress help, WordPress plugins, WordPress themes, WordPress news</dc:creator>
		<pubDate>Tue, 19 Jan 2010 00:02:57 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/themocracy/?p=3#comment-966</guid>
		<description>[...] Themocracy &#8211; Using jQuery with WordPress [...]</description>
		<content:encoded><![CDATA[<p>[...] Themocracy &#8211; Using jQuery with WordPress [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Irfan Mansha</title>
		<link>http://themocracy.com/2009/04/using-jquery-with-wordpress/comment-page-1/#comment-906</link>
		<dc:creator>Irfan Mansha</dc:creator>
		<pubDate>Mon, 04 Jan 2010 07:17:03 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/themocracy/?p=3#comment-906</guid>
		<description>Hi,

I like the way u have shown source code. I want to know that which plugin u have used to display the source code.

Thanks,</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I like the way u have shown source code. I want to know that which plugin u have used to display the source code.</p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas</title>
		<link>http://themocracy.com/2009/04/using-jquery-with-wordpress/comment-page-1/#comment-883</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Sat, 05 Dec 2009 05:49:15 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/themocracy/?p=3#comment-883</guid>
		<description>Thank you for this!  Knowing that WordPress has jQuery built in makes my life a bit easier.  Until I need to use something cutting-edge, that is...</description>
		<content:encoded><![CDATA[<p>Thank you for this!  Knowing that WordPress has jQuery built in makes my life a bit easier.  Until I need to use something cutting-edge, that is&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Using jQuery with WordPress &#124; Themocracy WordPress Themes &#171; My Snippet Library</title>
		<link>http://themocracy.com/2009/04/using-jquery-with-wordpress/comment-page-1/#comment-879</link>
		<dc:creator>Using jQuery with WordPress &#124; Themocracy WordPress Themes &#171; My Snippet Library</dc:creator>
		<pubDate>Sat, 05 Dec 2009 02:20:57 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/themocracy/?p=3#comment-879</guid>
		<description>[...] Using jQuery with WordPress &#124; Themocracy WordPress Themes.   Comments [...]</description>
		<content:encoded><![CDATA[<p>[...] Using jQuery with WordPress | Themocracy WordPress Themes.   Comments [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://themocracy.com/2009/04/using-jquery-with-wordpress/comment-page-1/#comment-731</link>
		<dc:creator>John</dc:creator>
		<pubDate>Wed, 18 Nov 2009 17:44:03 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/themocracy/?p=3#comment-731</guid>
		<description>Very helpful, thanks.  I was struggling to make the &quot;ready&quot; function work.</description>
		<content:encoded><![CDATA[<p>Very helpful, thanks.  I was struggling to make the &#8220;ready&#8221; function work.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

