<?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: Multiple Selector (&#8220;selector1, selector2, selectorN&#8221;)</title>
	<atom:link href="http://api.jquery.com/multiple-selector/feed/" rel="self" type="application/rss+xml" />
	<link>http://api.jquery.com/multiple-selector/</link>
	<description>jQuery API Reference</description>
	<lastBuildDate>Fri, 19 Aug 2011 09:06:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Steeler</title>
		<link>http://api.jquery.com/multiple-selector/comment-page-1/#comment-8416</link>
		<dc:creator>Steeler</dc:creator>
		<pubDate>Wed, 19 Jan 2011 02:20:13 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=536#comment-8416</guid>
		<description>why this does not work? &lt;br&gt;&lt;br&gt;        $j(&quot;.inp_txt,.tld_chrome&quot;).blur(function() {&lt;br&gt;            var val = $j(&#039;.inp_txt&#039;).val();&lt;br&gt;            if (!val) {&lt;br&gt;                $j(&#039;.inp_txt&#039;).width(266)&lt;br&gt;				$j(&#039;.inp_txt&#039;).css(&#039;text-align&#039;,&#039;left&#039;)&lt;br&gt;				$j(&#039;.inp_txt&#039;).val(this.defaultValue);&lt;br&gt;				$j(&#039;.tld_chrome&#039;).hide()&lt;br&gt;            }&lt;br&gt;        });&lt;br&gt;I&#039;ve though that selector $j(&quot;.inp_txt &amp; .tld_chrome&quot;).blur should work, but it doesn&#039;t.&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>why this does not work? </p>
<p>        $j(&#8220;.inp_txt,.tld_chrome&#8221;).blur(function() {<br />            var val = $j(&#39;.inp_txt&#39;).val();<br />            if (!val) {<br />                $j(&#39;.inp_txt&#39;).width(266)<br />				$j(&#39;.inp_txt&#39;).css(&#39;text-align&#39;,&#39;left&#39;)<br />				$j(&#39;.inp_txt&#39;).val(this.defaultValue);<br />				$j(&#39;.tld_chrome&#39;).hide()<br />            }<br />        });<br />I&#39;ve though that selector $j(&#8220;.inp_txt &amp; .tld_chrome&#8221;).blur should work, but it doesn&#39;t.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hamid Raza</title>
		<link>http://api.jquery.com/multiple-selector/comment-page-1/#comment-8305</link>
		<dc:creator>Hamid Raza</dc:creator>
		<pubDate>Thu, 13 Jan 2011 04:11:18 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=536#comment-8305</guid>
		<description>hello&lt;br&gt;var elem1 = $(&#039;#div1&#039;);&lt;br&gt;var elem2 = $(&#039;#div2&#039;);&lt;br&gt;var elem3 = $(&#039;#div3&#039;);&lt;br&gt;&lt;br&gt;how will u apply hover effect on these three divs using the variables...?&lt;br&gt;&lt;br&gt;i know i can apply the hover effect with $(&#039;#div1, #div2, #div3&#039;).hover();&lt;br&gt;&lt;br&gt;but i want to apply the hover like elem1.hover(). on all the three divs in one line.</description>
		<content:encoded><![CDATA[<p>hello<br />var elem1 = $(&#39;#div1&#39;);<br />var elem2 = $(&#39;#div2&#39;);<br />var elem3 = $(&#39;#div3&#39;);</p>
<p>how will u apply hover effect on these three divs using the variables&#8230;?</p>
<p>i know i can apply the hover effect with $(&#39;#div1, #div2, #div3&#39;).hover();</p>
<p>but i want to apply the hover like elem1.hover(). on all the three divs in one line.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mad</title>
		<link>http://api.jquery.com/multiple-selector/comment-page-1/#comment-6379</link>
		<dc:creator>Mad</dc:creator>
		<pubDate>Fri, 15 Oct 2010 04:41:01 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=536#comment-6379</guid>
		<description>I did it:&lt;br&gt;$(this).parent().find(&quot;span,label&quot;).animate({bottom: &#039;+=10&#039;});&lt;br&gt;&lt;br&gt;=D</description>
		<content:encoded><![CDATA[<p>I did it:<br />$(this).parent().find(&#8220;span,label&#8221;).animate({bottom: &#39;+=10&#39;});</p>
<p>=D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mad</title>
		<link>http://api.jquery.com/multiple-selector/comment-page-1/#comment-6354</link>
		<dc:creator>Mad</dc:creator>
		<pubDate>Thu, 14 Oct 2010 12:49:00 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=536#comment-6354</guid>
		<description>Hi!&lt;br&gt;&lt;br&gt;It&#039;s possible to join this two?&lt;br&gt;&lt;br&gt;$(this).animate({bottom: &#039;+=10&#039;});&lt;br&gt;$(this).next(&quot;label&quot;).animate({bottom: &#039;+=10&#039;});&lt;br&gt;&lt;br&gt;in something like this:&lt;br&gt;&lt;br&gt;$($(this),$(this).next(&quot;label&quot;)).animate({bottom: &#039;+=10&#039;}); //OBVIOUSLY NOT WORK!&lt;br&gt;&lt;br&gt;I want to start animation at the same time without create a new div...</description>
		<content:encoded><![CDATA[<p>Hi!</p>
<p>It&#39;s possible to join this two?</p>
<p>$(this).animate({bottom: &#39;+=10&#39;});<br />$(this).next(&#8220;label&#8221;).animate({bottom: &#39;+=10&#39;});</p>
<p>in something like this:</p>
<p>$($(this),$(this).next(&#8220;label&#8221;)).animate({bottom: &#39;+=10&#39;}); //OBVIOUSLY NOT WORK!</p>
<p>I want to start animation at the same time without create a new div&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Felipe alcacibar</title>
		<link>http://api.jquery.com/multiple-selector/comment-page-1/#comment-6309</link>
		<dc:creator>Felipe alcacibar</dc:creator>
		<pubDate>Tue, 12 Oct 2010 20:44:50 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=536#comment-6309</guid>
		<description>the OR equivalent in css is the , selector operator</description>
		<content:encoded><![CDATA[<p>the OR equivalent in css is the , selector operator</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shashank</title>
		<link>http://api.jquery.com/multiple-selector/comment-page-1/#comment-6179</link>
		<dc:creator>shashank</dc:creator>
		<pubDate>Thu, 07 Oct 2010 06:11:26 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=536#comment-6179</guid>
		<description>What if we want to select multiple child items of a parent. Which one should we use:&lt;br&gt;1.  $(&quot;span.not_body&gt;div, span.not_body&gt;p&quot;)&lt;br&gt;2.  $(&quot;span.not_body&gt;div &amp;7 span.not_body&gt;p&quot;) &lt;br&gt;</description>
		<content:encoded><![CDATA[<p>What if we want to select multiple child items of a parent. Which one should we use:<br />1.  $(&#8220;span.not_body&gt;div, span.not_body&gt;p&#8221;)<br />2.  $(&#8220;span.not_body&gt;div &amp;7 span.not_body&gt;p&#8221;) </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucas Dias Gabriel</title>
		<link>http://api.jquery.com/multiple-selector/comment-page-1/#comment-5737</link>
		<dc:creator>Lucas Dias Gabriel</dc:creator>
		<pubDate>Mon, 13 Sep 2010 10:14:34 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=536#comment-5737</guid>
		<description>I have a question: Is there a way to use the multiple selectors to, instead of retreiving disparate elements, to use the multiple selectors as filters? ( For example: using one selector to retrieve all itens that are inputs and inside those results return all inputs that are of a given class)</description>
		<content:encoded><![CDATA[<p>I have a question: Is there a way to use the multiple selectors to, instead of retreiving disparate elements, to use the multiple selectors as filters? ( For example: using one selector to retrieve all itens that are inputs and inside those results return all inputs that are of a given class)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucas Dias Gabriel</title>
		<link>http://api.jquery.com/multiple-selector/comment-page-1/#comment-5736</link>
		<dc:creator>Lucas Dias Gabriel</dc:creator>
		<pubDate>Mon, 13 Sep 2010 10:14:34 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=536#comment-5736</guid>
		<description>I have a question: Is there a way to use the multiple selectors to, instead of retreiving disparate elements, to use the multiple selectors as filters? ( For example: using one selector to retrieve all itens that are inputs and inside those results return all inputs that are of a given class)</description>
		<content:encoded><![CDATA[<p>I have a question: Is there a way to use the multiple selectors to, instead of retreiving disparate elements, to use the multiple selectors as filters? ( For example: using one selector to retrieve all itens that are inputs and inside those results return all inputs that are of a given class)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucas Dias Gabriel</title>
		<link>http://api.jquery.com/multiple-selector/comment-page-1/#comment-5735</link>
		<dc:creator>Lucas Dias Gabriel</dc:creator>
		<pubDate>Mon, 13 Sep 2010 10:14:34 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=536#comment-5735</guid>
		<description>I have a question: Is there a way to use the multiple selectors to, instead of retreiving disparate elements, to use the multiple selectors as filters? ( For example: using one selector to retrieve all itens that are inputs and inside those results return all inputs that are of a given class)</description>
		<content:encoded><![CDATA[<p>I have a question: Is there a way to use the multiple selectors to, instead of retreiving disparate elements, to use the multiple selectors as filters? ( For example: using one selector to retrieve all itens that are inputs and inside those results return all inputs that are of a given class)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucas Dias Gabriel</title>
		<link>http://api.jquery.com/multiple-selector/comment-page-1/#comment-5734</link>
		<dc:creator>Lucas Dias Gabriel</dc:creator>
		<pubDate>Mon, 13 Sep 2010 10:14:34 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=536#comment-5734</guid>
		<description>I have a question: Is there a way to use the multiple selectors to, instead of retreiving disparate elements, to use the multiple selectors as filters? ( For example: using one selector to retrieve all itens that are inputs and inside those results return all inputs that are of a given class)</description>
		<content:encoded><![CDATA[<p>I have a question: Is there a way to use the multiple selectors to, instead of retreiving disparate elements, to use the multiple selectors as filters? ( For example: using one selector to retrieve all itens that are inputs and inside those results return all inputs that are of a given class)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

