<?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: Basic Show and Hide</title>
	<atom:link href="http://www.learningjquery.com/2006/09/basic-show-and-hide/feed" rel="self" type="application/rss+xml" />
	<link>http://www.learningjquery.com/2006/09/basic-show-and-hide</link>
	<description>Tips, techniques, and tutorials for the jQuery JavaScript library</description>
	<lastBuildDate>Sun, 14 Mar 2010 16:12:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: CS</title>
		<link>http://www.learningjquery.com/2006/09/basic-show-and-hide/comment-page-1#comment-79839</link>
		<dc:creator>CS</dc:creator>
		<pubDate>Fri, 12 Mar 2010 03:41:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2006/09/basic-show-and-hide#comment-79839</guid>
		<description>I am really new in this.
I tried the example, but the title part only was hidden for 1 second or 2, re-appeared, which makes me think the hiding is only linked to the click event, and the effect is gone after the click event finishes...  Could you please shed some light?
The jQuery part:
&lt;pre&gt;&lt;code&gt;
$(document).ready(function() {
    $(&#039;#hideTitle&#039;).click(function() {
        $(&#039;h1&#039;).hide();
    });
    $(&#039;#showTitle&#039;).click(function() {
        $(&#039;h1&#039;).show();
    });
});
&lt;/code&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>I am really new in this.<br />
I tried the example, but the title part only was hidden for 1 second or 2, re-appeared, which makes me think the hiding is only linked to the click event, and the effect is gone after the click event finishes&#8230;  Could you please shed some light?<br />
The jQuery part:</p>
<pre><code>
$(document).ready(function() {
    $('#hideTitle').click(function() {
        $('h1').hide();
    });
    $('#showTitle').click(function() {
        $('h1').show();
    });
});
</code></pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: JS Tonen en verbergen van een div - 9lives - Games Forum</title>
		<link>http://www.learningjquery.com/2006/09/basic-show-and-hide/comment-page-1#comment-79762</link>
		<dc:creator>JS Tonen en verbergen van een div - 9lives - Games Forum</dc:creator>
		<pubDate>Mon, 01 Mar 2010 22:13:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2006/09/basic-show-and-hide#comment-79762</guid>
		<description>[...] Doe dat met jQuery. Nu zit je met tagsoep (onclick bij een link). Is niet de beste manier van werken.  Basic Show and Hide Learning jQuery - Tips, Techniques, Tutorials [...]</description>
		<content:encoded><![CDATA[<p>[...] Doe dat met jQuery. Nu zit je met tagsoep (onclick bij een link). Is niet de beste manier van werken.  Basic Show and Hide Learning jQuery &#8211; Tips, Techniques, Tutorials [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karl Swedberg</title>
		<link>http://www.learningjquery.com/2006/09/basic-show-and-hide/comment-page-1#comment-79642</link>
		<dc:creator>Karl Swedberg</dc:creator>
		<pubDate>Fri, 29 Jan 2010 00:58:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2006/09/basic-show-and-hide#comment-79642</guid>
		<description>This sounds like an issue I discuss in &lt;a href=&quot;http://learningjquery.com/2008/03/working-with-events-part-1&quot; rel=&quot;nofollow&quot;&gt;this article&lt;/a&gt;. Also, this issue is addressed in the &lt;a href=&quot;http://docs.jquery.com/Frequently_Asked_Questions#Why_doesn.27t_an_event_work_on_a_new_element_I.27ve_created.3F&quot; rel=&quot;nofollow&quot;&gt;Frequently Asked Questions&lt;/a&gt; page.</description>
		<content:encoded><![CDATA[<p>This sounds like an issue I discuss in <a href="http://learningjquery.com/2008/03/working-with-events-part-1" rel="nofollow">this article</a>. Also, this issue is addressed in the <a href="http://docs.jquery.com/Frequently_Asked_Questions#Why_doesn.27t_an_event_work_on_a_new_element_I.27ve_created.3F" rel="nofollow">Frequently Asked Questions</a> page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WeaponsTheyFear</title>
		<link>http://www.learningjquery.com/2006/09/basic-show-and-hide/comment-page-1#comment-79551</link>
		<dc:creator>WeaponsTheyFear</dc:creator>
		<pubDate>Wed, 13 Jan 2010 23:06:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2006/09/basic-show-and-hide#comment-79551</guid>
		<description>I am having trouble with hiding in created elements.  I click on a title, and it loads a page inside a div.  The contetn that was loaded has some css that SHOULD be hidden by default, but is not (content loaded is a form, and things that are hidden are errors messages).

I ran into similar situation where I needed to use LiveQuery but am at a loss as to why this isn&#039;t working.  I have been able to find nothing about it.</description>
		<content:encoded><![CDATA[<p>I am having trouble with hiding in created elements.  I click on a title, and it loads a page inside a div.  The contetn that was loaded has some css that SHOULD be hidden by default, but is not (content loaded is a form, and things that are hidden are errors messages).</p>
<p>I ran into similar situation where I needed to use LiveQuery but am at a loss as to why this isn&#8217;t working.  I have been able to find nothing about it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tejas L Tank</title>
		<link>http://www.learningjquery.com/2006/09/basic-show-and-hide/comment-page-1#comment-79175</link>
		<dc:creator>Tejas L Tank</dc:creator>
		<pubDate>Thu, 19 Nov 2009 05:23:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2006/09/basic-show-and-hide#comment-79175</guid>
		<description>Hi.

 Since a last few month i try to learn jquery very fastly in short time but not so possible but after  visiting this page , now i can work  better on jquery , thanks a lot dear</description>
		<content:encoded><![CDATA[<p>Hi.</p>
<p> Since a last few month i try to learn jquery very fastly in short time but not so possible but after  visiting this page , now i can work  better on jquery , thanks a lot dear</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vinnycius</title>
		<link>http://www.learningjquery.com/2006/09/basic-show-and-hide/comment-page-1#comment-79109</link>
		<dc:creator>Vinnycius</dc:creator>
		<pubDate>Sat, 24 Oct 2009 20:31:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2006/09/basic-show-and-hide#comment-79109</guid>
		<description>Thank you man..

That was very helpful!!!</description>
		<content:encoded><![CDATA[<p>Thank you man..</p>
<p>That was very helpful!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Galina</title>
		<link>http://www.learningjquery.com/2006/09/basic-show-and-hide/comment-page-1#comment-77627</link>
		<dc:creator>Galina</dc:creator>
		<pubDate>Fri, 19 Jun 2009 19:55:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2006/09/basic-show-and-hide#comment-77627</guid>
		<description>How you show hide on mouseover using jquery, every example is on click. I would like to know how to show log in control on mouseover hyperlink Please login.
thank oyu</description>
		<content:encoded><![CDATA[<p>How you show hide on mouseover using jquery, every example is on click. I would like to know how to show log in control on mouseover hyperlink Please login.<br />
thank oyu</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karl Swedberg</title>
		<link>http://www.learningjquery.com/2006/09/basic-show-and-hide/comment-page-1#comment-77186</link>
		<dc:creator>Karl Swedberg</dc:creator>
		<pubDate>Sun, 14 Jun 2009 17:52:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2006/09/basic-show-and-hide#comment-77186</guid>
		<description>Hi Mark, 
You just need to set the border-bottom property for the acronym. Something like this:
&lt;code&gt;acronym, abbrev { border-bottom: 1px dotted #d44314; }&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Hi Mark,<br />
You just need to set the border-bottom property for the acronym. Something like this:<br />
<code>acronym, abbrev { border-bottom: 1px dotted #d44314; }</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.learningjquery.com/2006/09/basic-show-and-hide/comment-page-1#comment-76462</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Tue, 09 Jun 2009 13:54:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2006/09/basic-show-and-hide#comment-76462</guid>
		<description>Thanks for the great code.  I have a follow-up Q: 
on your acronyms, you have a different style (dashed lines instead of solid).  Can you share the details of how you did this?  Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks for the great code.  I have a follow-up Q:<br />
on your acronyms, you have a different style (dashed lines instead of solid).  Can you share the details of how you did this?  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ixi</title>
		<link>http://www.learningjquery.com/2006/09/basic-show-and-hide/comment-page-1#comment-73127</link>
		<dc:creator>ixi</dc:creator>
		<pubDate>Wed, 20 May 2009 09:15:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningjquery.com/2006/09/basic-show-and-hide#comment-73127</guid>
		<description>very nice indeed</description>
		<content:encoded><![CDATA[<p>very nice indeed</p>
]]></content:encoded>
	</item>
</channel>
</rss>
