<?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"
	>
<channel>
	<title>Comments on: Javascript Image Gallery Using Mootools (Part 2)</title>
	<atom:link href="http://tutorialdog.com/javascript-image-gallery-using-mootools-part-2/feed/" rel="self" type="application/rss+xml" />
	<link>http://tutorialdog.com/javascript-image-gallery-using-mootools-part-2/</link>
	<description>Man's best friend for learning</description>
	<pubDate>Mon, 08 Sep 2008 16:31:40 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: Joe</title>
		<link>http://tutorialdog.com/javascript-image-gallery-using-mootools-part-2/#comment-2788</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Sun, 07 Sep 2008 07:48:16 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialdog.com/?p=188#comment-2788</guid>
		<description>Hey thanks for the code, any way of making the large image clickable to take you to an even bigger image or an html file?

I've tried several stuff, but since the way of getting the images is already a &lt;a&gt; tag using it is not an option (i think...and tried:( )

any other suggestions?</description>
		<content:encoded><![CDATA[<p>Hey thanks for the code, any way of making the large image clickable to take you to an even bigger image or an html file?</p>
<p>I&#8217;ve tried several stuff, but since the way of getting the images is already a <a> tag using it is not an option (i think&#8230;and tried:( )</p>
<p>any other suggestions?</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bart van Irsel</title>
		<link>http://tutorialdog.com/javascript-image-gallery-using-mootools-part-2/#comment-2503</link>
		<dc:creator>Bart van Irsel</dc:creator>
		<pubDate>Wed, 27 Aug 2008 19:08:29 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialdog.com/?p=188#comment-2503</guid>
		<description>For me using the code by 'a developer' fixed it in IE7 in a custom mootools script which had the same problem.

I used the folowwing code:

var tmp = new Date();

var suffix = tmp.getTime();

var largeImage = new Element('img', { 'src': item.href + '?' + suffix });</description>
		<content:encoded><![CDATA[<p>For me using the code by &#8216;a developer&#8217; fixed it in IE7 in a custom mootools script which had the same problem.</p>
<p>I used the folowwing code:</p>
<p>var tmp = new Date();</p>
<p>var suffix = tmp.getTime();</p>
<p>var largeImage = new Element(&#8217;img&#8217;, { &#8217;src&#8217;: item.href + &#8216;?&#8217; + suffix });</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Archetype</title>
		<link>http://tutorialdog.com/javascript-image-gallery-using-mootools-part-2/#comment-2451</link>
		<dc:creator>Archetype</dc:creator>
		<pubDate>Sun, 24 Aug 2008 23:27:02 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialdog.com/?p=188#comment-2451</guid>
		<description>How does one ensure that images of varying x-y ratio don't stretch out and become skewed when viewing with this gallery? I have a program that resizes them all to fit within the constrains of the img window; the problem is that when x &#60; y, x stretches to fit the whole window. Is this in the CSS or JS... I cant' seem to pinpoint the problem.</description>
		<content:encoded><![CDATA[<p>How does one ensure that images of varying x-y ratio don&#8217;t stretch out and become skewed when viewing with this gallery? I have a program that resizes them all to fit within the constrains of the img window; the problem is that when x &lt; y, x stretches to fit the whole window. Is this in the CSS or JS&#8230; I cant&#8217; seem to pinpoint the problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mariano Junior</title>
		<link>http://tutorialdog.com/javascript-image-gallery-using-mootools-part-2/#comment-2384</link>
		<dc:creator>Mariano Junior</dc:creator>
		<pubDate>Fri, 22 Aug 2008 16:41:46 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialdog.com/?p=188#comment-2384</guid>
		<description>Description in first image?</description>
		<content:encoded><![CDATA[<p>Description in first image?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Samuel</title>
		<link>http://tutorialdog.com/javascript-image-gallery-using-mootools-part-2/#comment-2381</link>
		<dc:creator>Samuel</dc:creator>
		<pubDate>Fri, 22 Aug 2008 09:47:23 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialdog.com/?p=188#comment-2381</guid>
		<description>Great Devin, it works in IE now! But, I found another bug. Its not possible to have a description on the first image :( Is there a workaround?</description>
		<content:encoded><![CDATA[<p>Great Devin, it works in IE now! But, I found another bug. Its not possible to have a description on the first image :( Is there a workaround?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Devin</title>
		<link>http://tutorialdog.com/javascript-image-gallery-using-mootools-part-2/#comment-2377</link>
		<dc:creator>Devin</dc:creator>
		<pubDate>Fri, 22 Aug 2008 04:21:59 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialdog.com/?p=188#comment-2377</guid>
		<description>Okay you crazy kids, I FIXED THE Internet Explorer PROBLEM!!!!. One small draw back is that the smooth transitions I implemented in have to be taken out because IE can't tell when an image is loaded. If you look at the actual js file, I've commented out the line that cause the problem in IE and made note.

What can I say... If someone finds a solution to correct this problem please let me and the rest of the community know.</description>
		<content:encoded><![CDATA[<p>Okay you crazy kids, I FIXED THE Internet Explorer PROBLEM!!!!. One small draw back is that the smooth transitions I implemented in have to be taken out because IE can&#8217;t tell when an image is loaded. If you look at the actual js file, I&#8217;ve commented out the line that cause the problem in IE and made note.</p>
<p>What can I say&#8230; If someone finds a solution to correct this problem please let me and the rest of the community know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mariano Junior</title>
		<link>http://tutorialdog.com/javascript-image-gallery-using-mootools-part-2/#comment-2368</link>
		<dc:creator>Mariano Junior</dc:creator>
		<pubDate>Thu, 21 Aug 2008 20:30:36 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialdog.com/?p=188#comment-2368</guid>
		<description>Hey Devin, this script don't work in IE! Suggestions?</description>
		<content:encoded><![CDATA[<p>Hey Devin, this script don&#8217;t work in IE! Suggestions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Samuel</title>
		<link>http://tutorialdog.com/javascript-image-gallery-using-mootools-part-2/#comment-2362</link>
		<dc:creator>Samuel</dc:creator>
		<pubDate>Thu, 21 Aug 2008 14:37:31 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialdog.com/?p=188#comment-2362</guid>
		<description>Ive also encountered the problem in IE7 and i dont understand what to do to make it work :(

//Sam</description>
		<content:encoded><![CDATA[<p>Ive also encountered the problem in IE7 and i dont understand what to do to make it work :(</p>
<p>//Sam</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carwin</title>
		<link>http://tutorialdog.com/javascript-image-gallery-using-mootools-part-2/#comment-2345</link>
		<dc:creator>Carwin</dc:creator>
		<pubDate>Wed, 20 Aug 2008 18:47:37 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialdog.com/?p=188#comment-2345</guid>
		<description>Is there any update for Mootools 1.2 official release?</description>
		<content:encoded><![CDATA[<p>Is there any update for Mootools 1.2 official release?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://tutorialdog.com/javascript-image-gallery-using-mootools-part-2/#comment-2340</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Wed, 20 Aug 2008 06:34:32 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialdog.com/?p=188#comment-2340</guid>
		<description>If I can get this to work in IE this will be just the thing I was looking for to redo my photography website.  Really nice job dude!</description>
		<content:encoded><![CDATA[<p>If I can get this to work in IE this will be just the thing I was looking for to redo my photography website.  Really nice job dude!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
