<?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: jQuery plugin - textOverflow</title>
	<atom:link href="http://www.justplain.org/2009/04/01/jquery-plugin-textoverflow/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.justplain.org/2009/04/01/jquery-plugin-textoverflow/</link>
	<description>Just another plain weblog</description>
	<pubDate>Wed, 08 Feb 2012 13:13:32 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jorrit Schippers</title>
		<link>http://www.justplain.org/2009/04/01/jquery-plugin-textoverflow/comment-page-1/#comment-127115</link>
		<dc:creator>Jorrit Schippers</dc:creator>
		<pubDate>Thu, 30 Dec 2010 13:44:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.justplain.org/?p=293#comment-127115</guid>
		<description>In regard to the last comment:

What I meant was:

(style).tExTOvErFLoW {margin-right: -10000px;}(/style)

should be

(style type="text/css").tExTOvErFLoW {margin-right: -10000px;}(/style)

But replace (  with &gt; and ) with &lt;.</description>
		<content:encoded><![CDATA[<p>In regard to the last comment:</p>
<p>What I meant was:</p>
<p>(style).tExTOvErFLoW {margin-right: -10000px;}(/style)</p>
<p>should be</p>
<p>(style type=&#8221;text/css&#8221;).tExTOvErFLoW {margin-right: -10000px;}(/style)</p>
<p>But replace (  with &gt; and ) with &lt;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jorrit Schippers</title>
		<link>http://www.justplain.org/2009/04/01/jquery-plugin-textoverflow/comment-page-1/#comment-127114</link>
		<dc:creator>Jorrit Schippers</dc:creator>
		<pubDate>Thu, 30 Dec 2010 13:43:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.justplain.org/?p=293#comment-127114</guid>
		<description>It's a great plugin, but I have two comments:

 * .tExTOvErFLoW {margin-right: -10000px;} is added for each matched element instead of just once per page
 * .tExTOvErFLoW {margin-right: -10000px;} should be .tExTOvErFLoW {margin-right: -10000px;}</description>
		<content:encoded><![CDATA[<p>It&#8217;s a great plugin, but I have two comments:</p>
<p> * .tExTOvErFLoW {margin-right: -10000px;} is added for each matched element instead of just once per page<br />
 * .tExTOvErFLoW {margin-right: -10000px;} should be .tExTOvErFLoW {margin-right: -10000px;}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: GK</title>
		<link>http://www.justplain.org/2009/04/01/jquery-plugin-textoverflow/comment-page-1/#comment-125279</link>
		<dc:creator>GK</dc:creator>
		<pubDate>Mon, 01 Nov 2010 20:06:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.justplain.org/?p=293#comment-125279</guid>
		<description>Great plugin, but seems to break when used inside an iFrame. 

I'm seeing all of my text disappear and replaced with an ellipsis when page is loaded inside an iframe no matter which options I code. 

The same page works fine when loaded into a browser directly.  ??

Thoughts?</description>
		<content:encoded><![CDATA[<p>Great plugin, but seems to break when used inside an iFrame. </p>
<p>I&#8217;m seeing all of my text disappear and replaced with an ellipsis when page is loaded inside an iframe no matter which options I code. </p>
<p>The same page works fine when loaded into a browser directly.  ??</p>
<p>Thoughts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.justplain.org/2009/04/01/jquery-plugin-textoverflow/comment-page-1/#comment-124292</link>
		<dc:creator>David</dc:creator>
		<pubDate>Tue, 05 Oct 2010 12:42:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.justplain.org/?p=293#comment-124292</guid>
		<description>I changed the last few lines to not show ellipsis/links, etc if you are showing everything accross multiple lines.

        if (lineNr &lt; settings.lines)
            {
            newContent += testLine+' ';
            }
        else
        {
      if(newContent + testLine == content.trim()){
        newContent += testLine
      }else{
              newContent += testLine+settings.ellipsis+' '+settings.link;
          }
        }
        lineNr++;
        lastChar = "";
        }
    $(this).removeClass("tExTOvErFLoW");
    if (settings.titleAttr) {
        $(this).attr("title", content);
    }
    $(this).html(newContent);
    });
}</description>
		<content:encoded><![CDATA[<p>I changed the last few lines to not show ellipsis/links, etc if you are showing everything accross multiple lines.</p>
<p>        if (lineNr &lt; settings.lines)<br />
            {<br />
            newContent += testLine+&#8217; &#8216;;<br />
            }<br />
        else<br />
        {<br />
      if(newContent + testLine == content.trim()){<br />
        newContent += testLine<br />
      }else{<br />
              newContent += testLine+settings.ellipsis+&#8217; &#8216;+settings.link;<br />
          }<br />
        }<br />
        lineNr++;<br />
        lastChar = &#8220;&#8221;;<br />
        }<br />
    $(this).removeClass(&#8221;tExTOvErFLoW&#8221;);<br />
    if (settings.titleAttr) {<br />
        $(this).attr(&#8221;title&#8221;, content);<br />
    }<br />
    $(this).html(newContent);<br />
    });<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.justplain.org/2009/04/01/jquery-plugin-textoverflow/comment-page-1/#comment-124291</link>
		<dc:creator>David</dc:creator>
		<pubDate>Tue, 05 Oct 2010 12:27:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.justplain.org/?p=293#comment-124291</guid>
		<description>Is there a way to hide the ellipsis when showing all the text (over multiple lines).  So, don't show the ellipsis if the whole text is displayed.

IE.
This is the 
whole text...</description>
		<content:encoded><![CDATA[<p>Is there a way to hide the ellipsis when showing all the text (over multiple lines).  So, don&#8217;t show the ellipsis if the whole text is displayed.</p>
<p>IE.<br />
This is the<br />
whole text&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Benjamin</title>
		<link>http://www.justplain.org/2009/04/01/jquery-plugin-textoverflow/comment-page-1/#comment-117280</link>
		<dc:creator>Benjamin</dc:creator>
		<pubDate>Wed, 16 Dec 2009 13:29:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.justplain.org/?p=293#comment-117280</guid>
		<description>Is it possible to scroll the text to the left (animating it), so show the overflowed content, when visitors hover over the text?</description>
		<content:encoded><![CDATA[<p>Is it possible to scroll the text to the left (animating it), so show the overflowed content, when visitors hover over the text?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Седдор</title>
		<link>http://www.justplain.org/2009/04/01/jquery-plugin-textoverflow/comment-page-1/#comment-116955</link>
		<dc:creator>Седдор</dc:creator>
		<pubDate>Sun, 29 Nov 2009 13:56:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.justplain.org/?p=293#comment-116955</guid>
		<description>Впечатлило, однако!</description>
		<content:encoded><![CDATA[<p>Впечатлило, однако!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dushyant</title>
		<link>http://www.justplain.org/2009/04/01/jquery-plugin-textoverflow/comment-page-1/#comment-116022</link>
		<dc:creator>Dushyant</dc:creator>
		<pubDate>Wed, 21 Oct 2009 20:57:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.justplain.org/?p=293#comment-116022</guid>
		<description>Hi, I have following points:
1) When you use width in "%" for truncated element and resize window, specifically increase the width of window add (...more) again and again.

2) How i can show full text there itself click on (...more) link</description>
		<content:encoded><![CDATA[<p>Hi, I have following points:<br />
1) When you use width in &#8220;%&#8221; for truncated element and resize window, specifically increase the width of window add (&#8230;more) again and again.</p>
<p>2) How i can show full text there itself click on (&#8230;more) link</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Olegreze</title>
		<link>http://www.justplain.org/2009/04/01/jquery-plugin-textoverflow/comment-page-1/#comment-115032</link>
		<dc:creator>Olegreze</dc:creator>
		<pubDate>Wed, 09 Sep 2009 20:56:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.justplain.org/?p=293#comment-115032</guid>
		<description>Основная задача Яндекса — давать ответы на вопросы пользователей!</description>
		<content:encoded><![CDATA[<p>Основная задача Яндекса — давать ответы на вопросы пользователей!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Demorf</title>
		<link>http://www.justplain.org/2009/04/01/jquery-plugin-textoverflow/comment-page-1/#comment-114577</link>
		<dc:creator>Demorf</dc:creator>
		<pubDate>Mon, 24 Aug 2009 14:21:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.justplain.org/?p=293#comment-114577</guid>
		<description>thank you (:</description>
		<content:encoded><![CDATA[<p>thank you (:</p>
]]></content:encoded>
	</item>
</channel>
</rss>

