<?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: Introducing $(document).ready()</title>
	<atom:link href="http://www.learningjquery.com/2006/09/introducing-document-ready/feed" rel="self" type="application/rss+xml" />
	<link>http://www.learningjquery.com/2006/09/introducing-document-ready</link>
	<description>Tips, techniques, and tutorials for the jQuery JavaScript library</description>
	<lastBuildDate>Tue, 31 Aug 2010 13:53:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jason</title>
		<link>http://www.learningjquery.com/2006/09/introducing-document-ready/comment-page-1#comment-80885</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Fri, 16 Jul 2010 14:20:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2006/09/introducing-document-ready#comment-80885</guid>
		<description>Use jQuery.noConflict();

http://api.jquery.com/jQuery.noConflict/</description>
		<content:encoded><![CDATA[<p>Use jQuery.noConflict();</p>
<p><a href="http://api.jquery.com/jQuery.noConflict/" rel="nofollow">http://api.jquery.com/jQuery.noConflict/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Small Tips Using WordPress and jQuery &#187; WordPressURLs</title>
		<link>http://www.learningjquery.com/2006/09/introducing-document-ready/comment-page-2#comment-80794</link>
		<dc:creator>Small Tips Using WordPress and jQuery &#187; WordPressURLs</dc:creator>
		<pubDate>Tue, 13 Jul 2010 13:23:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2006/09/introducing-document-ready#comment-80794</guid>
		<description>[...] To check either a HTML is loaded, make make make make make make make make use of of of of of of of of a following call. That creates certain which a DOM is installed as well as we can crop a DOM around jQuery as well as right away a genuine work of a book can start. we strongly suggest to make make make make make make make make use of of of of of of of of this variant. we do not wish to insist all a benefits, though we can review about it in a essay Introducing $(document).ready(). [...]</description>
		<content:encoded><![CDATA[<p>[...] To check either a HTML is loaded, make make make make make make make make use of of of of of of of of a following call. That creates certain which a DOM is installed as well as we can crop a DOM around jQuery as well as right away a genuine work of a book can start. we strongly suggest to make make make make make make make make use of of of of of of of of this variant. we do not wish to insist all a benefits, though we can review about it in a essay Introducing $(document).ready(). [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Small Tips Using WordPress and jQuery &#124; Best Wordpress News™</title>
		<link>http://www.learningjquery.com/2006/09/introducing-document-ready/comment-page-2#comment-80792</link>
		<dc:creator>Small Tips Using WordPress and jQuery &#124; Best Wordpress News™</dc:creator>
		<pubDate>Tue, 13 Jul 2010 11:18:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2006/09/introducing-document-ready#comment-80792</guid>
		<description>[...] To check whether the HTML is loaded, use the following call. That makes sure that the DOM is loaded and you can browse the DOM via jQuery and now the real work of the script can start. I strongly recommend to use this variant. I don&#8217;t want to explain all the benefits, but you can read about it in the article Introducing $(document).ready(). [...]</description>
		<content:encoded><![CDATA[<p>[...] To check whether the HTML is loaded, use the following call. That makes sure that the DOM is loaded and you can browse the DOM via jQuery and now the real work of the script can start. I strongly recommend to use this variant. I don&#8217;t want to explain all the benefits, but you can read about it in the article Introducing $(document).ready(). [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carlos</title>
		<link>http://www.learningjquery.com/2006/09/introducing-document-ready/comment-page-1#comment-80622</link>
		<dc:creator>Carlos</dc:creator>
		<pubDate>Mon, 05 Jul 2010 15:45:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2006/09/introducing-document-ready#comment-80622</guid>
		<description>Hello Karl, I am having the display flashing problem when I .hide() and .show() at document.ready().  Have you find the solution to avoid that?. I obviously can&#039;t hide via css, because there are galleries that don&#039;t work if I do that.  Please help!! 

Thanks</description>
		<content:encoded><![CDATA[<p>Hello Karl, I am having the display flashing problem when I .hide() and .show() at document.ready().  Have you find the solution to avoid that?. I obviously can&#8217;t hide via css, because there are galleries that don&#8217;t work if I do that.  Please help!! </p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.learningjquery.com/2006/09/introducing-document-ready/comment-page-2#comment-80499</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Sun, 20 Jun 2010 20:00:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2006/09/introducing-document-ready#comment-80499</guid>
		<description>I a calendar page on my site, and I&#039;m trying to refresh the containing div only when submitting a new date.

I am using this to refresh the div on a main page:

&lt;pre&gt;&lt;code&gt;
function DoDate(gDate)
{
 $(document).ready(function()
 {
 $(&#039;#caldiv&#039;).load(&#039;caldiv.asp&#039;,{&quot;fDate&quot;:gDate}).fadeIn(&quot;fast&quot;);
 });
}
&lt;/code&gt;&lt;/pre&gt;

And in the caldiv.asp page I am using:
&lt;pre&gt;&lt;code&gt;
fDate =  Request.QueryString(&quot;fDate&quot;)
&lt;/code&gt;&lt;/pre&gt;

The div refreshes fine, but no data is passed.
I tried &lt;code&gt;$(&#039;#caldiv&#039;).load(&#039;caldiv.asp?fDate=&#039; + gDate).fadeIn(&quot;fast&quot;);&lt;/code&gt;
But that didn&#039;t work either...
How do I get this to pass the new date to the div page?
Thanks
Dave</description>
		<content:encoded><![CDATA[<p>I a calendar page on my site, and I&#8217;m trying to refresh the containing div only when submitting a new date.</p>
<p>I am using this to refresh the div on a main page:</p>
<pre><code>
function DoDate(gDate)
{
 $(document).ready(function()
 {
 $('#caldiv').load('caldiv.asp',{"fDate":gDate}).fadeIn("fast");
 });
}
</code></pre>
<p>And in the caldiv.asp page I am using:</p>
<pre><code>
fDate =  Request.QueryString("fDate")
</code></pre>
<p>The div refreshes fine, but no data is passed.<br />
I tried <code>$('#caldiv').load('caldiv.asp?fDate=' + gDate).fadeIn("fast");</code><br />
But that didn&#8217;t work either&#8230;<br />
How do I get this to pass the new date to the div page?<br />
Thanks<br />
Dave</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nikl</title>
		<link>http://www.learningjquery.com/2006/09/introducing-document-ready/comment-page-2#comment-80353</link>
		<dc:creator>nikl</dc:creator>
		<pubDate>Mon, 24 May 2010 12:07:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2006/09/introducing-document-ready#comment-80353</guid>
		<description>What is the differene between 
&lt;code&gt;jQuery(document).ready(function($) {&lt;/code&gt;
and
&lt;code&gt;$(document).ready(function() {&lt;/code&gt;
?</description>
		<content:encoded><![CDATA[<p>What is the differene between<br />
<code>jQuery(document).ready(function($) {</code><br />
and<br />
<code>$(document).ready(function() {</code><br />
?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karl Swedberg</title>
		<link>http://www.learningjquery.com/2006/09/introducing-document-ready/comment-page-2#comment-80350</link>
		<dc:creator>Karl Swedberg</dc:creator>
		<pubDate>Sat, 22 May 2010 12:37:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2006/09/introducing-document-ready#comment-80350</guid>
		<description>Are you referencing the jQuery core file before your custom script? If so, are you sure you have the correct path? Try putting a script tag that looks like this before your other scripts:

&lt;code&gt;&lt;script src=&quot;http://code.jquery.com/jquery-latest.js&quot;&gt;&lt;/script&gt;&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Are you referencing the jQuery core file before your custom script? If so, are you sure you have the correct path? Try putting a script tag that looks like this before your other scripts:</p>
<p><code>&lt;script src="http://code.jquery.com/jquery-latest.js"&gt;&lt;/script&gt;</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Interesting Facts</title>
		<link>http://www.learningjquery.com/2006/09/introducing-document-ready/comment-page-2#comment-80349</link>
		<dc:creator>Interesting Facts</dc:creator>
		<pubDate>Sat, 22 May 2010 07:23:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2006/09/introducing-document-ready#comment-80349</guid>
		<description>but i have included

			
	$(document).ready(function(){				
				
		$(&#039;#slider-code&#039;).tinycarousel({ pager: true });
		
	});
	


this code in head, but still getting the error &quot; $ is not defined&quot;</description>
		<content:encoded><![CDATA[<p>but i have included</p>
<p>	$(document).ready(function(){				</p>
<p>		$(&#8216;#slider-code&#8217;).tinycarousel({ pager: true });</p>
<p>	});</p>
<p>this code in head, but still getting the error &#8221; $ is not defined&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 14 Ways To Start Learning jQuery &#124; Tweeaks Design</title>
		<link>http://www.learningjquery.com/2006/09/introducing-document-ready/comment-page-2#comment-80323</link>
		<dc:creator>14 Ways To Start Learning jQuery &#124; Tweeaks Design</dc:creator>
		<pubDate>Sun, 16 May 2010 14:16:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2006/09/introducing-document-ready#comment-80323</guid>
		<description>[...] Introducing $(document).ready() [...]</description>
		<content:encoded><![CDATA[<p>[...] Introducing $(document).ready() [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reading XML with jQuery using AJAX $.get() &#171; Prototypic.net</title>
		<link>http://www.learningjquery.com/2006/09/introducing-document-ready/comment-page-2#comment-80300</link>
		<dc:creator>Reading XML with jQuery using AJAX $.get() &#171; Prototypic.net</dc:creator>
		<pubDate>Wed, 12 May 2010 17:13:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2006/09/introducing-document-ready#comment-80300</guid>
		<description>[...] inside the document ready function gets executed when jQuery determines that your document is fully loaded. This is an [...]</description>
		<content:encoded><![CDATA[<p>[...] inside the document ready function gets executed when jQuery determines that your document is fully loaded. This is an [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk (enhanced) (user agent is rejected)
Database Caching 16/34 queries in 0.007 seconds using disk

Served from: www.learningjquery.com @ 2010-09-02 23:46:37 -->