<?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 for Suneth Mendis</title>
	<atom:link href="http://www.slackcoders.com/suneth/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.slackcoders.com/suneth</link>
	<description>One life, Live it!</description>
	<pubDate>Mon, 13 Oct 2008 08:44:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>Comment on iFrame dynamic resizing revisited by Concentratedmedia Blog &#187; Blog Archive &#187; Creating Dynamic iframes for IE 6 &#38; 7, Safari 3, Firefox 2 &#38; 3</title>
		<link>http://www.slackcoders.com/suneth/2008/06/05/iframe-dynamic-resizing-revisited/#comment-658</link>
		<dc:creator>Concentratedmedia Blog &#187; Blog Archive &#187; Creating Dynamic iframes for IE 6 &#38; 7, Safari 3, Firefox 2 &#38; 3</dc:creator>
		<pubDate>Wed, 03 Sep 2008 04:27:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.slackcoders.com/suneth/?p=47#comment-658</guid>
		<description>[...] this but the best solution is to work with a little trick in CSS,I found a great tip on this web site,   The best solution, that works for IE 6&#38;7 &#124; Safari 3 &#124; and Firefox 2 &#38; 3:Is the [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] this but the best solution is to work with a little trick in CSS,I found a great tip on this web site,   The best solution, that works for IE 6&amp;7 | Safari 3 | and Firefox 2 &amp; 3:Is the [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iFrame dynamic resizing revisited by Suneth Mendis</title>
		<link>http://www.slackcoders.com/suneth/2008/06/05/iframe-dynamic-resizing-revisited/#comment-544</link>
		<dc:creator>Suneth Mendis</dc:creator>
		<pubDate>Sun, 17 Aug 2008 20:50:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.slackcoders.com/suneth/?p=47#comment-544</guid>
		<description>Combining both is a BAD thing. As I said CSS expressions are really bad. So use it only when it absolutely necessary. By doing something like,

&lt;!--[if IE 7]&gt;&lt;link href="style_ie7.css" type="text/css" rel="stylesheet" /&gt;&lt;![endif]--&gt;

you can isolate IE and put in the hack.</description>
		<content:encoded><![CDATA[<p>Combining both is a BAD thing. As I said CSS expressions are really bad. So use it only when it absolutely necessary. By doing something like,</p>
<p><!--[if IE 7]>
<link href="style_ie7.css" type="text/css" rel="stylesheet" />< ![endif]--></p>
<p>you can isolate IE and put in the hack.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iFrame dynamic resizing revisited by Julks</title>
		<link>http://www.slackcoders.com/suneth/2008/06/05/iframe-dynamic-resizing-revisited/#comment-543</link>
		<dc:creator>Julks</dc:creator>
		<pubDate>Sun, 17 Aug 2008 13:22:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.slackcoders.com/suneth/?p=47#comment-543</guid>
		<description>Hi Suneth,

How to put the code in one meaning that will work in both IE and Firefox in just one code.</description>
		<content:encoded><![CDATA[<p>Hi Suneth,</p>
<p>How to put the code in one meaning that will work in both IE and Firefox in just one code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on &#8220;Fun&#8221; with Prototype and IE7 and Tables by Suneth Mendis</title>
		<link>http://www.slackcoders.com/suneth/2008/05/13/fun-with-prototype-and-ie7-and-tables/#comment-410</link>
		<dc:creator>Suneth Mendis</dc:creator>
		<pubDate>Thu, 03 Jul 2008 20:34:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.slackcoders.com/suneth/?p=44#comment-410</guid>
		<description>You are spot on Michael. I ran into the same problem some time ago. The most annoying thing about Prototype or Scriptaculous Builder is that it does not show any error messages in the console. 
So you are right. You got to use "className" (Case sensitive too) and  not class if you are using the Scriptaculous Builder. Its always pays off to read the documentation!!! (http://github.com/madrobby/scriptaculous/wikis/builder)
Prototype also comes with a dynamic DOM builder function. 

 var container = new Element('div', { 'class': class_name });
Note how Prototype use "class" and not className here.</description>
		<content:encoded><![CDATA[<p>You are spot on Michael. I ran into the same problem some time ago. The most annoying thing about Prototype or Scriptaculous Builder is that it does not show any error messages in the console.<br />
So you are right. You got to use &#8220;className&#8221; (Case sensitive too) and  not class if you are using the Scriptaculous Builder. Its always pays off to read the documentation!!! (http://github.com/madrobby/scriptaculous/wikis/builder)<br />
Prototype also comes with a dynamic DOM builder function. </p>
<p> var container = new Element(&#8217;div&#8217;, { &#8216;class&#8217;: class_name });<br />
Note how Prototype use &#8220;class&#8221; and not className here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on &#8220;Fun&#8221; with Prototype and IE7 and Tables by Michael McLawhorn</title>
		<link>http://www.slackcoders.com/suneth/2008/05/13/fun-with-prototype-and-ie7-and-tables/#comment-409</link>
		<dc:creator>Michael McLawhorn</dc:creator>
		<pubDate>Thu, 03 Jul 2008 16:32:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.slackcoders.com/suneth/?p=44#comment-409</guid>
		<description>I ran into a related issue, that the attribute 'class' which is visible in Firefox as something.class = 'foo', in IE7, that statement caused the entire javascript file it was in to fail to LOAD without a meaningful error message.

The fix was to call it .className.  Which is fine.  Except that I'm not even sure how I was supposed to find that out.</description>
		<content:encoded><![CDATA[<p>I ran into a related issue, that the attribute &#8216;class&#8217; which is visible in Firefox as something.class = &#8216;foo&#8217;, in IE7, that statement caused the entire javascript file it was in to fail to LOAD without a meaningful error message.</p>
<p>The fix was to call it .className.  Which is fine.  Except that I&#8217;m not even sure how I was supposed to find that out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iFrame dynamic resizing revisited by Nick</title>
		<link>http://www.slackcoders.com/suneth/2008/06/05/iframe-dynamic-resizing-revisited/#comment-392</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Thu, 26 Jun 2008 19:41:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.slackcoders.com/suneth/?p=47#comment-392</guid>
		<description>A poop - I'm Sorry, I don't know how to flag code so that it isn't rendered...</description>
		<content:encoded><![CDATA[<p>A poop - I&#8217;m Sorry, I don&#8217;t know how to flag code so that it isn&#8217;t rendered&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iFrame dynamic resizing revisited by Nick</title>
		<link>http://www.slackcoders.com/suneth/2008/06/05/iframe-dynamic-resizing-revisited/#comment-391</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Thu, 26 Jun 2008 19:38:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.slackcoders.com/suneth/?p=47#comment-391</guid>
		<description>Notes:

1. Using Joomla installation http://axeandcrom.com
2. Using ComicCMS installation http://axeandcrom.com/comic

Need:

1. Comic to be dynamically iFramed into Joomla install

Attempt One:
I tried putting the code into a Joomla module and published it from there.

1. with CSS in a seperate doc
2. with CSS inline

Neither worked, so I thought it might be a Joomla thing.

Attempt Two:
Put code into the index.php of the live template.

1 &#38; 2 same as above.

Code Attempt 01:


Code Attempt 02:
http://axeandcrom.com/comic/

Code Attempt 03:
http://axeandcrom.com/comic/index.php

CSS Placements:
I tried external style sheet, header, and inline.

It would be awesome if you could assist.
Thx,</description>
		<content:encoded><![CDATA[<p>Notes:</p>
<p>1. Using Joomla installation <a href="http://axeandcrom.com" rel="nofollow">http://axeandcrom.com</a><br />
2. Using ComicCMS installation <a href="http://axeandcrom.com/comic" rel="nofollow">http://axeandcrom.com/comic</a></p>
<p>Need:</p>
<p>1. Comic to be dynamically iFramed into Joomla install</p>
<p>Attempt One:<br />
I tried putting the code into a Joomla module and published it from there.</p>
<p>1. with CSS in a seperate doc<br />
2. with CSS inline</p>
<p>Neither worked, so I thought it might be a Joomla thing.</p>
<p>Attempt Two:<br />
Put code into the index.php of the live template.</p>
<p>1 &amp; 2 same as above.</p>
<p>Code Attempt 01:</p>
<p>Code Attempt 02:<br />
<a href="http://axeandcrom.com/comic/" rel="nofollow">http://axeandcrom.com/comic/</a></p>
<p>Code Attempt 03:<br />
<a href="http://axeandcrom.com/comic/index.php" rel="nofollow">http://axeandcrom.com/comic/index.php</a></p>
<p>CSS Placements:<br />
I tried external style sheet, header, and inline.</p>
<p>It would be awesome if you could assist.<br />
Thx,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iFrame dynamic resizing revisited by Suneth Mendis</title>
		<link>http://www.slackcoders.com/suneth/2008/06/05/iframe-dynamic-resizing-revisited/#comment-390</link>
		<dc:creator>Suneth Mendis</dc:creator>
		<pubDate>Thu, 26 Jun 2008 01:24:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.slackcoders.com/suneth/?p=47#comment-390</guid>
		<description>No Javascript required. It is purely CSS driven. Would you mind posting a simple use case of your example so I can have a look? (Just sample HTML will do)</description>
		<content:encoded><![CDATA[<p>No Javascript required. It is purely CSS driven. Would you mind posting a simple use case of your example so I can have a look? (Just sample HTML will do)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iFrame dynamic resizing revisited by Nick</title>
		<link>http://www.slackcoders.com/suneth/2008/06/05/iframe-dynamic-resizing-revisited/#comment-389</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Thu, 26 Jun 2008 01:14:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.slackcoders.com/suneth/?p=47#comment-389</guid>
		<description>Is that it - or do I need to install any Javascript?  (At the moment it isn't working for me.)</description>
		<content:encoded><![CDATA[<p>Is that it - or do I need to install any Javascript?  (At the moment it isn&#8217;t working for me.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iFrame dynamic resizing revisited by Suneth Mendis &#187; Iframe dynamic resizing&#8230; SOLVED!</title>
		<link>http://www.slackcoders.com/suneth/2008/06/05/iframe-dynamic-resizing-revisited/#comment-362</link>
		<dc:creator>Suneth Mendis &#187; Iframe dynamic resizing&#8230; SOLVED!</dc:creator>
		<pubDate>Thu, 05 Jun 2008 07:08:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.slackcoders.com/suneth/?p=47#comment-362</guid>
		<description>[...] UPDATE: Check out my next post for a better solution.  [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] UPDATE: Check out my next post for a better solution.  [&#8230;]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
