<?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: Quick and Easy jQuery Image Swap</title>
	<atom:link href="http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/</link>
	<description>Your Business Catalyst</description>
	<lastBuildDate>Sat, 04 Feb 2012 05:46:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
	<item>
		<title>By: jQuery image crossfade onhover &#124; Hardware Infomation and Computer Tutorials</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/comment-page-1/#comment-20079</link>
		<dc:creator>jQuery image crossfade onhover &#124; Hardware Infomation and Computer Tutorials</dc:creator>
		<pubDate>Tue, 08 Nov 2011 04:28:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=292#comment-20079</guid>
		<description>[...] I&#8217;m working on that allows for easy image switches onhover. I found this awesome little tool: http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/ &#8230; does exactly what I need except it switches the image but not crossfade onhover. I know I [...]</description>
		<content:encoded><![CDATA[<p>[...] I&#8217;m working on that allows for easy image switches onhover. I found this awesome little tool: <a href="http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/" rel="nofollow">http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/</a> &#8230; does exactly what I need except it switches the image but not crossfade onhover. I know I [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lee</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/comment-page-1/#comment-19058</link>
		<dc:creator>Lee</dc:creator>
		<pubDate>Mon, 17 Oct 2011 22:07:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=292#comment-19058</guid>
		<description>Hi,

Click doesnt quite work like hover where you can have the mouse over and mouse out functions.

I would suggest using something like:

[js]
jQuery(function(){
     var c=1, x=1; 
    $(&quot;.img-swap&quot;).click(function(){
        c = x == 5 ? -1 : c;
	c = x == 1 ? 1 : c;
        y = x + c; 
        this.src = this.src.replace(&quot;_&quot;+x,&quot;_&quot;+y);
	x = y;
    });
});
[/js]

Change the &quot;5&quot; to whatever number of images you want to use. The above code will sequentially increase the image number until 5 and then descend back to 1</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Click doesnt quite work like hover where you can have the mouse over and mouse out functions.</p>
<p>I would suggest using something like:</p>
<pre class="brush: jscript; title: ; notranslate">
jQuery(function(){
     var c=1, x=1;
    $(&quot;.img-swap&quot;).click(function(){
        c = x == 5 ? -1 : c;
	c = x == 1 ? 1 : c;
        y = x + c;
        this.src = this.src.replace(&quot;_&quot;+x,&quot;_&quot;+y);
	x = y;
    });
});
</pre>
<p>Change the &#8220;5&#8243; to whatever number of images you want to use. The above code will sequentially increase the image number until 5 and then descend back to 1</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rich</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/comment-page-1/#comment-19048</link>
		<dc:creator>Rich</dc:creator>
		<pubDate>Mon, 17 Oct 2011 18:27:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=292#comment-19048</guid>
		<description>Thanks for this great script!  

I&#039;m trying to alter this script to go thru a series of images on a click instead of a hover.  the first click to go to image 2 works, but then that is it.  When I use hover instead of click, the mouseover gets me to 2, and the mouseout gets me to 3 but then that is it.  Can anyone see what I am missing? 

[text]&lt;script type=&quot;text/javascript&quot;&gt;
jQuery(function(){
     $(&quot;.img-swap&quot;).click(
          function(){this.src = this.src.replace(&quot;_1&quot;,&quot;_2&quot;);},
          function(){this.src = this.src.replace(&quot;_2&quot;,&quot;_3&quot;);},
		  function(){this.src = this.src.replace(&quot;_3&quot;,&quot;_4&quot;);},
		  function(){this.src = this.src.replace(&quot;_4&quot;,&quot;_5&quot;);},
          function(){this.src = this.src.replace(&quot;_5&quot;,&quot;_1&quot;);
     });
});
&lt;/script&gt;[/text]</description>
		<content:encoded><![CDATA[<p>Thanks for this great script!  </p>
<p>I&#8217;m trying to alter this script to go thru a series of images on a click instead of a hover.  the first click to go to image 2 works, but then that is it.  When I use hover instead of click, the mouseover gets me to 2, and the mouseout gets me to 3 but then that is it.  Can anyone see what I am missing? </p>
<pre class="brush: plain; title: ; notranslate">&lt;script type=&quot;text/javascript&quot;&gt;
jQuery(function(){
     $(&quot;.img-swap&quot;).click(
          function(){this.src = this.src.replace(&quot;_1&quot;,&quot;_2&quot;);},
          function(){this.src = this.src.replace(&quot;_2&quot;,&quot;_3&quot;);},
		  function(){this.src = this.src.replace(&quot;_3&quot;,&quot;_4&quot;);},
		  function(){this.src = this.src.replace(&quot;_4&quot;,&quot;_5&quot;);},
          function(){this.src = this.src.replace(&quot;_5&quot;,&quot;_1&quot;);
     });
});
&lt;/script&gt;</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: jQuery: Generic Image Swap &#124; Ekini.net by Wenbert Del Rosario</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/comment-page-1/#comment-17729</link>
		<dc:creator>jQuery: Generic Image Swap &#124; Ekini.net by Wenbert Del Rosario</dc:creator>
		<pubDate>Sat, 17 Sep 2011 06:48:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=292#comment-17729</guid>
		<description>[...] and &#8220;my_icon_off.png&#8221;. I find this version a lot simpler to implement and debug. Source.   This entry was posted in General. Bookmark the permalink.    &#8592; Wordress: Using custom [...]</description>
		<content:encoded><![CDATA[<p>[...] and &#8220;my_icon_off.png&#8221;. I find this version a lot simpler to implement and debug. Source.   This entry was posted in General. Bookmark the permalink.    &larr; Wordress: Using custom [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/comment-page-1/#comment-17339</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Thu, 08 Sep 2011 15:59:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=292#comment-17339</guid>
		<description>Thanks for your reply.   Yes, I am using image sprite.  

Here is the CSS for the single image sprite

[text].close_win {
	 position: absolute;     
	 left: 280px;     
	 top: 256px;     
	 width: 26px;     
	 height: 13px;     
	 background: url(../images/modal-close-icon.png) 0 0 no-repeat; 
}[/text]


Here&#039;s the jQuery where I tried using two images, but I don&#039;t know to write it for the One image.  (The code below didn&#039;t work, I&#039;m doing something wrong.  I tried [text][/toggle[/text]&quot; as well, nothing. But I don&#039;t want to use two images anyway.)

[text]$(document).ready(function(){
	$(&quot;.close_win&quot;).hover(function() {
		$(this).attr(&quot;src&quot;,&quot;modal-close-icon_off.png&quot;);
			}, function() {
		$(this).attr(&quot;src&quot;,&quot;modal-close-icon_on.png&quot;); 
 });

}); [/text]


Here&#039;s my HTML:

[text] &lt;h2 class=&quot;nf_h2822&quot;&gt;BOOKS AVAILABLE&nbsp;&nbsp;&nbsp;&lt;a id=&quot;popupClose&quot; class=&quot;close_win&quot;&gt;&lt;!--&lt;span &gt;&lt;/span&gt; --&gt;&lt;/a&gt;&lt;/h2&gt;
[/text]

Since I&#039;m just learning this and I know I&#039;m missing something probably simple, but would you mind revising/rewriting/deleting the code above so that it will work? 

Thank you
Chris</description>
		<content:encoded><![CDATA[<p>Thanks for your reply.   Yes, I am using image sprite.  </p>
<p>Here is the CSS for the single image sprite</p>
<pre class="brush: plain; title: ; notranslate">.close_win {
	 position: absolute;
	 left: 280px;
	 top: 256px;
	 width: 26px;
	 height: 13px;
	 background: url(../images/modal-close-icon.png) 0 0 no-repeat;
}</pre>
<p>Here&#8217;s the jQuery where I tried using two images, but I don&#8217;t know to write it for the One image.  (The code below didn&#8217;t work, I&#8217;m doing something wrong.  I tried
<pre class="brush: plain; title: ; notranslate">[/toggle</pre>
<p>&#8221; as well, nothing. But I don&#8217;t want to use two images anyway.)</p>
<pre class="brush: plain; title: ; notranslate">$(document).ready(function(){
	$(&quot;.close_win&quot;).hover(function() {
		$(this).attr(&quot;src&quot;,&quot;modal-close-icon_off.png&quot;);
			}, function() {
		$(this).attr(&quot;src&quot;,&quot;modal-close-icon_on.png&quot;);
 });

}); </pre>
<p>Here&#8217;s my HTML:</p>
<pre class="brush: plain; title: ; notranslate"> &lt;h2 class=&quot;nf_h2822&quot;&gt;BOOKS AVAILABLE&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a id=&quot;popupClose&quot; class=&quot;close_win&quot;&gt;&lt;!--&lt;span &gt;&lt;/span&gt; --&gt;&lt;/a&gt;&lt;/h2&gt;
</pre>
<p>Since I&#8217;m just learning this and I know I&#8217;m missing something probably simple, but would you mind revising/rewriting/deleting the code above so that it will work? </p>
<p>Thank you<br />
Chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lee</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/comment-page-1/#comment-17336</link>
		<dc:creator>Lee</dc:creator>
		<pubDate>Thu, 08 Sep 2011 15:04:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=292#comment-17336</guid>
		<description>Hi,

Animate the image using a top margin of -13px and then animate back to a margin of zero.

If you are using this method though with an image sprite you dont need CSS and are better just adding the image as a background image and change the background position by 13px on hover.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Animate the image using a top margin of -13px and then animate back to a margin of zero.</p>
<p>If you are using this method though with an image sprite you dont need CSS and are better just adding the image as a background image and change the background position by 13px on hover.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/comment-page-1/#comment-17335</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Thu, 08 Sep 2011 14:53:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=292#comment-17335</guid>
		<description>Hi,  I&#039;m very new to jQuery.  I am using one image containing two states side-by-side, not two images.  The image is  a simple &quot;X&quot; in a box.  The background of the two states are different colors for the hover effect.  The image size is 26x13 (again two small &quot;X&quot; boxes horizontal to each other)  How do I get the swap/hover effect to work?  I think I would have to target the location of the second image, but I&#039;m not sure.  It&#039;s something like sliding doors, where you use one image, but I&#039;m not understanding how to use hover/swap....

The image is within an anchor tag since it closes a modal box onClick.  Thanks!!!</description>
		<content:encoded><![CDATA[<p>Hi,  I&#8217;m very new to jQuery.  I am using one image containing two states side-by-side, not two images.  The image is  a simple &#8220;X&#8221; in a box.  The background of the two states are different colors for the hover effect.  The image size is 26&#215;13 (again two small &#8220;X&#8221; boxes horizontal to each other)  How do I get the swap/hover effect to work?  I think I would have to target the location of the second image, but I&#8217;m not sure.  It&#8217;s something like sliding doors, where you use one image, but I&#8217;m not understanding how to use hover/swap&#8230;.</p>
<p>The image is within an anchor tag since it closes a modal box onClick.  Thanks!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lee</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/comment-page-1/#comment-16633</link>
		<dc:creator>Lee</dc:creator>
		<pubDate>Thu, 18 Aug 2011 02:47:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=292#comment-16633</guid>
		<description>Hi,

Unfortunately using this code its not possible to fade in and fade out at the same time since there is only one image. The closest I have come so far is to just fade out then fade back in:

&lt;a href=&quot;/lab/jquery/demo/jquery_demo_image_swap_slide.htm&quot; rel=&quot;nofollow&quot;&gt;jQuery Demo: Image Swap Crossover Fade&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Unfortunately using this code its not possible to fade in and fade out at the same time since there is only one image. The closest I have come so far is to just fade out then fade back in:</p>
<p><a href="/lab/jquery/demo/jquery_demo_image_swap_slide.htm" rel="nofollow">jQuery Demo: Image Swap Crossover Fade</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ella</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/comment-page-1/#comment-16622</link>
		<dc:creator>ella</dc:creator>
		<pubDate>Wed, 17 Aug 2011 21:37:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=292#comment-16622</guid>
		<description>this is awesome. works like a charm -- though, is there an easy way to add an effect/transition between hover states? like a nice, soft fade?</description>
		<content:encoded><![CDATA[<p>this is awesome. works like a charm &#8212; though, is there an easy way to add an effect/transition between hover states? like a nice, soft fade?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lee</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/comment-page-1/#comment-15345</link>
		<dc:creator>Lee</dc:creator>
		<pubDate>Fri, 15 Jul 2011 21:30:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=292#comment-15345</guid>
		<description>Hi,

What is the code that you inserted into the page?

There should be just the jquery code, which you can add to the header.php file and then the images, which have class &quot;img-swap&quot; and end with _off</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>What is the code that you inserted into the page?</p>
<p>There should be just the jquery code, which you can add to the header.php file and then the images, which have class &#8220;img-swap&#8221; and end with _off</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dee</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/comment-page-1/#comment-15343</link>
		<dc:creator>Dee</dc:creator>
		<pubDate>Fri, 15 Jul 2011 21:23:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=292#comment-15343</guid>
		<description>Maybe this is obvious to others, but I&#039;m having a time making this work, because I don&#039;t know where to put the image-on html code. I&#039;m using Wordpress. I put the image-off html on the page, and I tried to put image-on code there too. Nothing. Then I put it in CSS...still nothing. The code looks so neat and simple - I&#039;d really like to use it. 

Thanks for any help.</description>
		<content:encoded><![CDATA[<p>Maybe this is obvious to others, but I&#8217;m having a time making this work, because I don&#8217;t know where to put the image-on html code. I&#8217;m using WordPress. I put the image-off html on the page, and I tried to put image-on code there too. Nothing. Then I put it in CSS&#8230;still nothing. The code looks so neat and simple &#8211; I&#8217;d really like to use it. </p>
<p>Thanks for any help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jake</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/comment-page-1/#comment-14495</link>
		<dc:creator>Jake</dc:creator>
		<pubDate>Mon, 20 Jun 2011 15:03:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=292#comment-14495</guid>
		<description>Thanks. Worked perfectly.</description>
		<content:encoded><![CDATA[<p>Thanks. Worked perfectly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lee</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/comment-page-1/#comment-12270</link>
		<dc:creator>Lee</dc:creator>
		<pubDate>Sat, 30 Apr 2011 08:03:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=292#comment-12270</guid>
		<description>Glad it helped Caleb</description>
		<content:encoded><![CDATA[<p>Glad it helped Caleb</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Caleb Irie</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/comment-page-1/#comment-12261</link>
		<dc:creator>Caleb Irie</dc:creator>
		<pubDate>Fri, 29 Apr 2011 23:23:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=292#comment-12261</guid>
		<description>This is the best jQuery image-swap I&#039;ve found so far.  Thank you!</description>
		<content:encoded><![CDATA[<p>This is the best jQuery image-swap I&#8217;ve found so far.  Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lee</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/comment-page-1/#comment-12026</link>
		<dc:creator>Lee</dc:creator>
		<pubDate>Mon, 25 Apr 2011 05:34:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=292#comment-12026</guid>
		<description>Hi Bill,

If you want to change the CSS class of the div tags you can use the following:

[js]
$(&quot;.div&quot;).hover(function(){
    $(this).toggleClass(&#039;hover&#039;);
});
[/js]

Where &quot;.div&quot; is the class of your div tags and &quot;hover&quot; is the CSS class that you want to add - &lt;a href=&quot;/lab/jquery/demo/jquery_demo_toggle_class_hover.htm&quot; rel=&quot;nofollow&quot;&gt;See demo&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Hi Bill,</p>
<p>If you want to change the CSS class of the div tags you can use the following:</p>
<pre class="brush: jscript; title: ; notranslate">
$(&quot;.div&quot;).hover(function(){
    $(this).toggleClass('hover');
});
</pre>
<p>Where &#8220;.div&#8221; is the class of your div tags and &#8220;hover&#8221; is the CSS class that you want to add &#8211; <a href="/lab/jquery/demo/jquery_demo_toggle_class_hover.htm" rel="nofollow">See demo</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bill</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/comment-page-1/#comment-12024</link>
		<dc:creator>bill</dc:creator>
		<pubDate>Mon, 25 Apr 2011 04:17:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=292#comment-12024</guid>
		<description>This is great, however what I&#039;m trying to do is make it so on hover the class of a div gets changed to a display of none. This way, there&#039;s 4 buttons and on hover of each a &#039;description&#039; gets swapped out, only displaying one at a time. I&#039;m sure it&#039;s simple, but I&#039;m very new to jQuery</description>
		<content:encoded><![CDATA[<p>This is great, however what I&#8217;m trying to do is make it so on hover the class of a div gets changed to a display of none. This way, there&#8217;s 4 buttons and on hover of each a &#8216;description&#8217; gets swapped out, only displaying one at a time. I&#8217;m sure it&#8217;s simple, but I&#8217;m very new to jQuery</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Creating a Jquery Function To Preload Images &#171; Design Chemical &#8211; Web Design, Printing, Packaging &#38; SEO</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/comment-page-1/#comment-8633</link>
		<dc:creator>Creating a Jquery Function To Preload Images &#171; Design Chemical &#8211; Web Design, Printing, Packaging &#38; SEO</dc:creator>
		<pubDate>Tue, 15 Feb 2011 14:43:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=292#comment-8633</guid>
		<description>[...] Quick and Easy jQuery Image Swap function offers a very simple way of implementing image change on hover for buttons, links, etc [...]</description>
		<content:encoded><![CDATA[<p>[...] Quick and Easy jQuery Image Swap function offers a very simple way of implementing image change on hover for buttons, links, etc [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Davor</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/comment-page-1/#comment-5447</link>
		<dc:creator>Davor</dc:creator>
		<pubDate>Sat, 13 Nov 2010 00:38:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=292#comment-5447</guid>
		<description>Thanks for reply. I already tried that, on various selectors related to image, but its not working. : /</description>
		<content:encoded><![CDATA[<p>Thanks for reply. I already tried that, on various selectors related to image, but its not working. : /</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/comment-page-1/#comment-5372</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 10 Nov 2010 22:59:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=292#comment-5372</guid>
		<description>Hi,

Not quite sure how you want to apply it to Galleriffic but you could change the selector for the hover function to select the Gallerific images - e.g. $(&#039;.image-wrapper a img&#039;)</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Not quite sure how you want to apply it to Galleriffic but you could change the selector for the hover function to select the Gallerific images &#8211; e.g. $(&#8216;.image-wrapper a img&#8217;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Davor</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/comment-page-1/#comment-5352</link>
		<dc:creator>Davor</dc:creator>
		<pubDate>Wed, 10 Nov 2010 11:19:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=292#comment-5352</guid>
		<description>Hello,

Very nice script and most solid swap image solution that I came across - thank you!
I am new to jQuery, and have trouble to implement this function to Galleriffic image gallery: Displayed image HTML is dynamically produced so I am uncertain where in code to apply “img-swap” class? Any tips would be appreciated? Thank you!</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>Very nice script and most solid swap image solution that I came across &#8211; thank you!<br />
I am new to jQuery, and have trouble to implement this function to Galleriffic image gallery: Displayed image HTML is dynamically produced so I am uncertain where in code to apply “img-swap” class? Any tips would be appreciated? Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/comment-page-1/#comment-1375</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 19 May 2010 11:38:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=292#comment-1375</guid>
		<description>$ is a shortcut for &quot;jQuery&quot; so it will make no difference to the code. One reason you may want to use jQuery is if you are using other javascript libraries on your website, which also use the $ shortcut - e.g. prototype</description>
		<content:encoded><![CDATA[<p>$ is a shortcut for &#8220;jQuery&#8221; so it will make no difference to the code. One reason you may want to use jQuery is if you are using other javascript libraries on your website, which also use the $ shortcut &#8211; e.g. prototype</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Nemes</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/comment-page-1/#comment-1374</link>
		<dc:creator>David Nemes</dc:creator>
		<pubDate>Wed, 19 May 2010 11:07:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=292#comment-1374</guid>
		<description>ty. i think there is a mistake: not -  jQuery(function(){   but - $(function(){</description>
		<content:encoded><![CDATA[<p>ty. i think there is a mistake: not &#8211;  jQuery(function(){   but &#8211; $(function(){</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Better Swap Image with jQuery &#124; NewMediaFun</title>
		<link>http://www.designchemical.com/blog/index.php/jquery/quick-and-easy-jquery-image-swap/comment-page-1/#comment-598</link>
		<dc:creator>Better Swap Image with jQuery &#124; NewMediaFun</dc:creator>
		<pubDate>Mon, 29 Mar 2010 21:56:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.designchemical.com/blog/?p=292#comment-598</guid>
		<description>[...] thanks to Design Chemical, click on the link to see their example.    &#171; BulkLoader and [...]</description>
		<content:encoded><![CDATA[<p>[...] thanks to Design Chemical, click on the link to see their example.    &laquo; BulkLoader and [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

