<?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: Litebox 1.0 Released</title>
	<atom:link href="http://www.doknowevil.net/2006/07/03/litebox-10-released/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.doknowevil.net/2006/07/03/litebox-10-released/</link>
	<description>Tips and Tricks About Computers, Web Development, Linux, the Internet and the Like</description>
	<lastBuildDate>Sat, 26 Jun 2010 14:13:45 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: derek</title>
		<link>http://www.doknowevil.net/2006/07/03/litebox-10-released/comment-page-1/#comment-22</link>
		<dc:creator>derek</dc:creator>
		<pubDate>Tue, 16 Jan 2007 02:44:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.doknowevil.net/?p=5#comment-22</guid>
		<description>The removeDuplicates method is broken.  It only removes dups if they were adjacent.  Here is a fix.
&lt;pre&gt;Array.prototype.removeDuplicates = function () {
for(i = 0; i &lt; this.length; i++){
for(j = i+1; j &lt; this.length; j++){
if(this[i][0] == this[j][0]){
this.splice(j--,1);
}
}
}
}&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>The removeDuplicates method is broken.  It only removes dups if they were adjacent.  Here is a fix.</p>
<pre>Array.prototype.removeDuplicates = function () {
for(i = 0; i < this.length; i++){
for(j = i+1; j < this.length; j++){
if(this[i][0] == this[j][0]){
this.splice(j--,1);
}
}
}
}</pre>
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marc</title>
		<link>http://www.doknowevil.net/2006/07/03/litebox-10-released/comment-page-1/#comment-20</link>
		<dc:creator>Marc</dc:creator>
		<pubDate>Sat, 25 Nov 2006 10:26:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.doknowevil.net/?p=5#comment-20</guid>
		<description>Very nice! Biggest pro: great performance compared to Lightbox on this terrible slow PC I&#039;m using at this location.

Big question for me now: how can I include HTML (links to external websites) in the picture &quot;window&quot; that opens?

And: any future plans to maintain this?

Thanks anyway, keep up the good work!</description>
		<content:encoded><![CDATA[<p>Very nice! Biggest pro: great performance compared to Lightbox on this terrible slow PC I&#8217;m using at this location.</p>
<p>Big question for me now: how can I include HTML (links to external websites) in the picture &#8220;window&#8221; that opens?</p>
<p>And: any future plans to maintain this?</p>
<p>Thanks anyway, keep up the good work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alan Orozco</title>
		<link>http://www.doknowevil.net/2006/07/03/litebox-10-released/comment-page-1/#comment-19</link>
		<dc:creator>Alan Orozco</dc:creator>
		<pubDate>Thu, 28 Sep 2006 01:10:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.doknowevil.net/?p=5#comment-19</guid>
		<description>No comments on this? Wow.

I just wanted to know if you had plans to port Litebox to mootools.... Please :)</description>
		<content:encoded><![CDATA[<p>No comments on this? Wow.</p>
<p>I just wanted to know if you had plans to port Litebox to mootools&#8230;. Please <img src='http://www.doknowevil.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: marco ziero</title>
		<link>http://www.doknowevil.net/2006/07/03/litebox-10-released/comment-page-1/#comment-18</link>
		<dc:creator>marco ziero</dc:creator>
		<pubDate>Wed, 20 Sep 2006 22:48:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.doknowevil.net/?p=5#comment-18</guid>
		<description>another thing: CMotion Image Gallery works with LightBox v.2, but it doesn&#039;t work with LiteBox...could you help me?
regards

marco from italy</description>
		<content:encoded><![CDATA[<p>another thing: CMotion Image Gallery works with LightBox v.2, but it doesn&#8217;t work with LiteBox&#8230;could you help me?<br />
regards</p>
<p>marco from italy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: marco ziero</title>
		<link>http://www.doknowevil.net/2006/07/03/litebox-10-released/comment-page-1/#comment-17</link>
		<dc:creator>marco ziero</dc:creator>
		<pubDate>Wed, 20 Sep 2006 22:47:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.doknowevil.net/?p=5#comment-17</guid>
		<description>hello, this is marco from italy.
i have got a problem, so i though to ask you if you could help me.
in my web site i tried to use your plugin Litebox with CMotion Image Gallery javascript (you can find it here: http://www.dynamicdrive.com/dynamicindex4/cmotiongallery.htm), but together they don&#039;t work.
unluckly, i don&#039;t know javascript language, so i really don&#039;t know what to do...could you help me? how can i make them work together?
thanks anyway

marco from italy</description>
		<content:encoded><![CDATA[<p>hello, this is marco from italy.<br />
i have got a problem, so i though to ask you if you could help me.<br />
in my web site i tried to use your plugin Litebox with CMotion Image Gallery javascript (you can find it here: <a href="http://www.dynamicdrive.com/dynamicindex4/cmotiongallery.htm)" rel="nofollow">http://www.dynamicdrive.com/dynamicindex4/cmotiongallery.htm)</a>, but together they don&#8217;t work.<br />
unluckly, i don&#8217;t know javascript language, so i really don&#8217;t know what to do&#8230;could you help me? how can i make them work together?<br />
thanks anyway</p>
<p>marco from italy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.doknowevil.net/2006/07/03/litebox-10-released/comment-page-1/#comment-16</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Sun, 17 Sep 2006 23:50:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.doknowevil.net/?p=5#comment-16</guid>
		<description>Out of curiosity what happend to nightbox with the navigation on the sides?</description>
		<content:encoded><![CDATA[<p>Out of curiosity what happend to nightbox with the navigation on the sides?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeremy Reid</title>
		<link>http://www.doknowevil.net/2006/07/03/litebox-10-released/comment-page-1/#comment-15</link>
		<dc:creator>Jeremy Reid</dc:creator>
		<pubDate>Thu, 14 Sep 2006 02:14:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.doknowevil.net/?p=5#comment-15</guid>
		<description>Just had to say thanks. I love this script. Great job making it tight and clean.</description>
		<content:encoded><![CDATA[<p>Just had to say thanks. I love this script. Great job making it tight and clean.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ia</title>
		<link>http://www.doknowevil.net/2006/07/03/litebox-10-released/comment-page-1/#comment-14</link>
		<dc:creator>ia</dc:creator>
		<pubDate>Tue, 05 Sep 2006 02:50:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.doknowevil.net/?p=5#comment-14</guid>
		<description>hi, i was wondering: is it possible to use this with other scripts that use body onload=&#039;...&#039;? i tried it with the addLoadEvent function but it doesn&#039;t seem to be working. any suggestions?

i&#039;d really like to use this version because it is a lot smaller. :D</description>
		<content:encoded><![CDATA[<p>hi, i was wondering: is it possible to use this with other scripts that use body onload=&#8217;&#8230;&#8217;? i tried it with the addLoadEvent function but it doesn&#8217;t seem to be working. any suggestions?</p>
<p>i&#8217;d really like to use this version because it is a lot smaller. <img src='http://www.doknowevil.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Rencher</title>
		<link>http://www.doknowevil.net/2006/07/03/litebox-10-released/comment-page-1/#comment-13</link>
		<dc:creator>Josh Rencher</dc:creator>
		<pubDate>Mon, 14 Aug 2006 23:38:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.doknowevil.net/?p=5#comment-13</guid>
		<description>Hey Tyler. I just stumbled across Litebox today, and I&#039;m very interested. I&#039;ve been thinking of using LightBox 2.0, but I like the idea of your streamlined version. My #1 concern is cross-browser and cross-platform compatibility. Are there any compatibility issues that you&#039;re aware of? Any quirks in behavior from one browser/platform to another? Thanks in advance for your help! -JOSH</description>
		<content:encoded><![CDATA[<p>Hey Tyler. I just stumbled across Litebox today, and I&#8217;m very interested. I&#8217;ve been thinking of using LightBox 2.0, but I like the idea of your streamlined version. My #1 concern is cross-browser and cross-platform compatibility. Are there any compatibility issues that you&#8217;re aware of? Any quirks in behavior from one browser/platform to another? Thanks in advance for your help! -JOSH</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan B</title>
		<link>http://www.doknowevil.net/2006/07/03/litebox-10-released/comment-page-1/#comment-12</link>
		<dc:creator>Dan B</dc:creator>
		<pubDate>Wed, 02 Aug 2006 16:59:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.doknowevil.net/?p=5#comment-12</guid>
		<description>LiteBox is a great idea in theory but unfortunately it haemorrhage&#039;s a lot of memory when used in Internet Explorer. If you open the demo page - http://doknowevil.net/litebox/ - in IE6 and then open Windows Task Manager and monitor memory you will see that each time you reload the page it leaks around 2MB of memory. I noticed this when developing a page using LiteBox and found IE using over 350MB of RAM! 

 I&#039;m not sure which of the javascript libraries is responsible for this. However, memory leaks using javascript and IE are well documented:
http://jibbering.com/faq/faq_notes/closures.html#clMem
http://www.codeproject.com/jscript/leakpatterns.asp
http://www.quirksmode.org/blog/archives/2005/02/javascript_memo.html

Hope those help you fix what is otherwise a very good idea! :)</description>
		<content:encoded><![CDATA[<p>LiteBox is a great idea in theory but unfortunately it haemorrhage&#8217;s a lot of memory when used in Internet Explorer. If you open the demo page &#8211; <a href="http://doknowevil.net/litebox/" rel="nofollow">http://doknowevil.net/litebox/</a> &#8211; in IE6 and then open Windows Task Manager and monitor memory you will see that each time you reload the page it leaks around 2MB of memory. I noticed this when developing a page using LiteBox and found IE using over 350MB of RAM! </p>
<p> I&#8217;m not sure which of the javascript libraries is responsible for this. However, memory leaks using javascript and IE are well documented:<br />
<a href="http://jibbering.com/faq/faq_notes/closures.html#clMem" rel="nofollow">http://jibbering.com/faq/faq_notes/closures.html#clMem</a><br />
<a href="http://www.codeproject.com/jscript/leakpatterns.asp" rel="nofollow">http://www.codeproject.com/jscript/leakpatterns.asp</a><br />
<a href="http://www.quirksmode.org/blog/archives/2005/02/javascript_memo.html" rel="nofollow">http://www.quirksmode.org/blog/archives/2005/02/javascript_memo.html</a></p>
<p>Hope those help you fix what is otherwise a very good idea! <img src='http://www.doknowevil.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
