<?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: Reflection.js 2.0</title>
	<atom:link href="http://cow.neondragon.net/index.php/reflectionjs-20/feed" rel="self" type="application/rss+xml" />
	<link>http://cow.neondragon.net/index.php/reflectionjs-20</link>
	<description>Helping you to get the most out of modern technology and communications since 2004.</description>
	<lastBuildDate>Tue, 07 Feb 2012 14:38:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Anthony</title>
		<link>http://cow.neondragon.net/index.php/reflectionjs-20/comment-page-2#comment-11878</link>
		<dc:creator>Anthony</dc:creator>
		<pubDate>Fri, 30 Sep 2011 15:55:35 +0000</pubDate>
		<guid isPermaLink="false">http://cow.neondragon.net/?p=3603#comment-11878</guid>
		<description>Looks OK in IE9 (9.0.8112.16421) but doesn&#039;t fade in Chrome (14.0.835.186) </description>
		<content:encoded><![CDATA[<p>Looks OK in IE9 (9.0.8112.16421) but doesn&#039;t fade in Chrome (14.0.835.186)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dino</title>
		<link>http://cow.neondragon.net/index.php/reflectionjs-20/comment-page-1#comment-10305</link>
		<dc:creator>Dino</dc:creator>
		<pubDate>Fri, 13 May 2011 10:46:57 +0000</pubDate>
		<guid isPermaLink="false">http://cow.neondragon.net/?p=3603#comment-10305</guid>
		<description>G&#039;day had the same problem but I fixed my by manually applying the reflection again after the click event 
 
Example: 
    var imageObj = document.getElementById(&quot;imagePreview&quot; + curcontentindex) 
    Reflection.add(imageObj, { opacity: 2 / 10 }); </description>
		<content:encoded><![CDATA[<p>G&#039;day had the same problem but I fixed my by manually applying the reflection again after the click event </p>
<p>Example:<br />
    var imageObj = document.getElementById(&quot;imagePreview&quot; + curcontentindex)<br />
    Reflection.add(imageObj, { opacity: 2 / 10 });</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elena</title>
		<link>http://cow.neondragon.net/index.php/reflectionjs-20/comment-page-2#comment-8492</link>
		<dc:creator>Elena</dc:creator>
		<pubDate>Thu, 09 Dec 2010 21:31:15 +0000</pubDate>
		<guid isPermaLink="false">http://cow.neondragon.net/?p=3603#comment-8492</guid>
		<description>hello, I have problem with script in IE7. I use hover on image,  when I move with mouse over area with reflection, hover image (png) continues also on reflection. Can somebody help?  </description>
		<content:encoded><![CDATA[<p>hello, I have problem with script in IE7. I use hover on image,  when I move with mouse over area with reflection, hover image (png) continues also on reflection. Can somebody help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dayve</title>
		<link>http://cow.neondragon.net/index.php/reflectionjs-20/comment-page-1#comment-8319</link>
		<dc:creator>Dayve</dc:creator>
		<pubDate>Wed, 17 Nov 2010 22:19:48 +0000</pubDate>
		<guid isPermaLink="false">http://cow.neondragon.net/?p=3603#comment-8319</guid>
		<description>Excellent - I have been having aproblem with the target frame.  Thank you for this solution. </description>
		<content:encoded><![CDATA[<p>Excellent &#8211; I have been having aproblem with the target frame.  Thank you for this solution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erjon</title>
		<link>http://cow.neondragon.net/index.php/reflectionjs-20/comment-page-2#comment-7812</link>
		<dc:creator>Erjon</dc:creator>
		<pubDate>Wed, 29 Sep 2010 23:55:37 +0000</pubDate>
		<guid isPermaLink="false">http://cow.neondragon.net/?p=3603#comment-7812</guid>
		<description>thank you so much for the updated version. You&#039;re a life saver! My client was already to woop my butt cause it wasn&#039;t working on all browsers and that&#039;s his favorite thing on the site lol. </description>
		<content:encoded><![CDATA[<p>thank you so much for the updated version. You&#039;re a life saver! My client was already to woop my butt cause it wasn&#039;t working on all browsers and that&#039;s his favorite thing on the site lol.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Caio Almeida</title>
		<link>http://cow.neondragon.net/index.php/reflectionjs-20/comment-page-2#comment-6990</link>
		<dc:creator>Caio Almeida</dc:creator>
		<pubDate>Tue, 29 Jun 2010 14:56:38 +0000</pubDate>
		<guid isPermaLink="false">http://cow.neondragon.net/?p=3603#comment-6990</guid>
		<description>Hi! 
 
I think that attaching the event using window.onload is not the best approach. 
How about using window.addEventListener? 
I&#039;ve changed your script to the following: 
 
Instead of: 
 
  var previousOnload = window.onload; 
  window.onload = function() { if (previousOnload) previousOnload(); addReflections(); } 
 
I put: 
 
if (window.addEventListener) { // DOM method for binding an event 
  window.addEventListener(&quot;load&quot;, addReflections, false); 
} else if (window.attachEvent) { // IE exclusive method for binding an event 
  window.attachEvent(&quot;onload&quot;, addReflections); 
} else { // Support older browsers 
  var previousOnload = window.onload; 
  window.onload = function() { if (previousOnload) previousOnload(); addReflections(); } 
} </description>
		<content:encoded><![CDATA[<p>Hi! </p>
<p>I think that attaching the event using window.onload is not the best approach.<br />
How about using window.addEventListener?<br />
I&#39;ve changed your script to the following: </p>
<p>Instead of: </p>
<p>  var previousOnload = window.onload;<br />
  window.onload = function() { if (previousOnload) previousOnload(); addReflections(); } </p>
<p>I put: </p>
<p>if (window.addEventListener) { // DOM method for binding an event<br />
  window.addEventListener(&quot;load&quot;, addReflections, false);<br />
} else if (window.attachEvent) { // IE exclusive method for binding an event<br />
  window.attachEvent(&quot;onload&quot;, addReflections);<br />
} else { // Support older browsers<br />
  var previousOnload = window.onload;<br />
  window.onload = function() { if (previousOnload) previousOnload(); addReflections(); }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://cow.neondragon.net/index.php/reflectionjs-20/comment-page-2#comment-6985</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Mon, 28 Jun 2010 14:45:33 +0000</pubDate>
		<guid isPermaLink="false">http://cow.neondragon.net/?p=3603#comment-6985</guid>
		<description>The links just below my reflection are not working in IE. &lt;a href=&quot;http://www.greenville.k12.sc.us/ajw&quot; rel=&quot;nofollow&quot;&gt;http://www.greenville.k12.sc.us/ajw&lt;/a&gt;. </description>
		<content:encoded><![CDATA[<p>The links just below my reflection are not working in IE. <a href="http://www.greenville.k12.sc.us/ajw" rel="nofollow">http://www.greenville.k12.sc.us/ajw</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://cow.neondragon.net/index.php/reflectionjs-20/comment-page-2#comment-6627</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Thu, 27 May 2010 12:49:52 +0000</pubDate>
		<guid isPermaLink="false">http://cow.neondragon.net/?p=3603#comment-6627</guid>
		<description>Any fix for the IE issue yet? When an image is also a link, in IE it doesn&#039;t actually take you to that link.  But, the oddest part of it, is you can see that it wants to link if you look at the bottom of your browser when your hovered over it, and if you right click and click &#039;open in new tab&#039; it opens!??!?!  I really need this fixed or to figure out a way to get it to work...any tips?</description>
		<content:encoded><![CDATA[<p>Any fix for the IE issue yet? When an image is also a link, in IE it doesn&#8217;t actually take you to that link.  But, the oddest part of it, is you can see that it wants to link if you look at the bottom of your browser when your hovered over it, and if you right click and click &#8216;open in new tab&#8217; it opens!??!?!  I really need this fixed or to figure out a way to get it to work&#8230;any tips?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://cow.neondragon.net/index.php/reflectionjs-20/comment-page-2#comment-6386</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Fri, 16 Apr 2010 11:27:59 +0000</pubDate>
		<guid isPermaLink="false">http://cow.neondragon.net/?p=3603#comment-6386</guid>
		<description>Hi,

Absolutely loving the script.

We are using for our new corporate website. One thing i improved upon was the ability to set a spacing between the image and the reflection, added a rspacing option that takes a value in pixels and puts a gap in, i personally think it improves the look of the reflection with a small gap.!.

If you like i can send you the changed version, might be nice to let other people use this feature.

Thanks, Chris.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Absolutely loving the script.</p>
<p>We are using for our new corporate website. One thing i improved upon was the ability to set a spacing between the image and the reflection, added a rspacing option that takes a value in pixels and puts a gap in, i personally think it improves the look of the reflection with a small gap.!.</p>
<p>If you like i can send you the changed version, might be nice to let other people use this feature.</p>
<p>Thanks, Chris.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ralph</title>
		<link>http://cow.neondragon.net/index.php/reflectionjs-20/comment-page-2#comment-6185</link>
		<dc:creator>Ralph</dc:creator>
		<pubDate>Mon, 15 Mar 2010 11:44:47 +0000</pubDate>
		<guid isPermaLink="false">http://cow.neondragon.net/?p=3603#comment-6185</guid>
		<description>nice script,

But if i use the reflected image as a link, the target function doesn&#039;t work. i want to open a page in a iframe is there any way to do this with a reflected image? I&#039;ve something like this: &lt;a href=&quot;page2.php&quot; rel=&quot;nofollow&quot;&gt;&lt;/a&gt;



thanks!</description>
		<content:encoded><![CDATA[<p>nice script,</p>
<p>But if i use the reflected image as a link, the target function doesn&#8217;t work. i want to open a page in a iframe is there any way to do this with a reflected image? I&#8217;ve something like this: <a href="page2.php" rel="nofollow"></a></p>
<p>thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

