<?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 for Rusty Jeans</title>
	<atom:link href="http://rustyjeans.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://rustyjeans.com</link>
	<description>PHP, JavaScript, Whatever...</description>
	<lastBuildDate>Tue, 21 Feb 2012 15:58:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>Comment on Input Limiter by Rusty</title>
		<link>http://rustyjeans.com/jquery-plugins/input-limiter/comment-page-1#comment-2692</link>
		<dc:creator>Rusty</dc:creator>
		<pubDate>Tue, 21 Feb 2012 15:58:07 +0000</pubDate>
		<guid isPermaLink="false">http://rustyjeans.com/?page_id=7#comment-2692</guid>
		<description>Yes, it&#039;s free! You can see the license at the top of the non-minified version of the script.</description>
		<content:encoded><![CDATA[<p>Yes, it&#8217;s free! You can see the license at the top of the non-minified version of the script.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Input Limiter by Joseph</title>
		<link>http://rustyjeans.com/jquery-plugins/input-limiter/comment-page-1#comment-2687</link>
		<dc:creator>Joseph</dc:creator>
		<pubDate>Tue, 21 Feb 2012 00:42:10 +0000</pubDate>
		<guid isPermaLink="false">http://rustyjeans.com/?page_id=7#comment-2687</guid>
		<description>Hi Rusty,
Just wanted to verify - use of the plugin is free (as in beer) right?  Sorry can&#039;t find any license text :(</description>
		<content:encoded><![CDATA[<p>Hi Rusty,<br />
Just wanted to verify &#8211; use of the plugin is free (as in beer) right?  Sorry can&#8217;t find any license text :(</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Input Limiter by Rusty</title>
		<link>http://rustyjeans.com/jquery-plugins/input-limiter/comment-page-1#comment-2678</link>
		<dc:creator>Rusty</dc:creator>
		<pubDate>Mon, 20 Feb 2012 04:15:46 +0000</pubDate>
		<guid isPermaLink="false">http://rustyjeans.com/?page_id=7#comment-2678</guid>
		<description>Joseph, glad you figured it out!</description>
		<content:encoded><![CDATA[<p>Joseph, glad you figured it out!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Input Limiter by Joseph</title>
		<link>http://rustyjeans.com/jquery-plugins/input-limiter/comment-page-1#comment-2677</link>
		<dc:creator>Joseph</dc:creator>
		<pubDate>Mon, 20 Feb 2012 03:33:04 +0000</pubDate>
		<guid isPermaLink="false">http://rustyjeans.com/?page_id=7#comment-2677</guid>
		<description>Hi Rusty,
Thanks for the effort on this.  Finally found the problem.  I just realized Im trying to limit textbox in a popup (i.e z-index&gt;0).  Unfortunately I have indicated a z-index of 8000 in my elements and limittext seems to be defaulting to z-index 2000 - which puts it behind the elements.  I just lowered my z-index so now its displaying nicely</description>
		<content:encoded><![CDATA[<p>Hi Rusty,<br />
Thanks for the effort on this.  Finally found the problem.  I just realized Im trying to limit textbox in a popup (i.e z-index&gt;0).  Unfortunately I have indicated a z-index of 8000 in my elements and limittext seems to be defaulting to z-index 2000 &#8211; which puts it behind the elements.  I just lowered my z-index so now its displaying nicely</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Input Limiter by Rusty</title>
		<link>http://rustyjeans.com/jquery-plugins/input-limiter/comment-page-1#comment-2663</link>
		<dc:creator>Rusty</dc:creator>
		<pubDate>Fri, 17 Feb 2012 16:25:20 +0000</pubDate>
		<guid isPermaLink="false">http://rustyjeans.com/?page_id=7#comment-2663</guid>
		<description>Joseph, you do not need to create the box that contains the remText, that happens automatically. I tested your scenario and it&#039;s working fine for me. See an example at: http://jsfiddle.net/rustyjeans/FvrYw/</description>
		<content:encoded><![CDATA[<p>Joseph, you do not need to create the box that contains the remText, that happens automatically. I tested your scenario and it&#8217;s working fine for me. See an example at: <a href="http://jsfiddle.net/rustyjeans/FvrYw/" rel="nofollow">http://jsfiddle.net/rustyjeans/FvrYw/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Input Limiter by Joseph</title>
		<link>http://rustyjeans.com/jquery-plugins/input-limiter/comment-page-1#comment-2658</link>
		<dc:creator>Joseph</dc:creator>
		<pubDate>Fri, 17 Feb 2012 06:09:27 +0000</pubDate>
		<guid isPermaLink="false">http://rustyjeans.com/?page_id=7#comment-2658</guid>
		<description>Hi Rusty,
Thanks for the Ultra fast comment.  Yeah I actually posted the wrong code ... that one is working properly.  Im getting the text just below the textbox.
Here&#039;s the one thats not working
$(&#039;.txtMessage&#039;).inputlimiter({
limit: 300,
remText: &#039;%n characters remaining&#039;,
});

Here&#039;s how my text area looks like
&lt;textarea class=&quot;txtMessage&quot; id=&quot;txtMessage_&quot;

It is able to limit the text but can&#039;t seem to show remText - please note I haven&#039;t declared any span to contain the remText (didnt create one for the working textbox either)</description>
		<content:encoded><![CDATA[<p>Hi Rusty,<br />
Thanks for the Ultra fast comment.  Yeah I actually posted the wrong code &#8230; that one is working properly.  Im getting the text just below the textbox.<br />
Here&#8217;s the one thats not working<br />
$(&#8216;.txtMessage&#8217;).inputlimiter({<br />
limit: 300,<br />
remText: &#8216;%n characters remaining&#8217;,<br />
});</p>
<p>Here&#8217;s how my text area looks like<br />
&lt;textarea class=&quot;txtMessage&quot; id=&quot;txtMessage_&#8221;</p>
<p>It is able to limit the text but can&#8217;t seem to show remText &#8211; please note I haven&#8217;t declared any span to contain the remText (didnt create one for the working textbox either)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Input Limiter by Rusty</title>
		<link>http://rustyjeans.com/jquery-plugins/input-limiter/comment-page-1#comment-2657</link>
		<dc:creator>Rusty</dc:creator>
		<pubDate>Fri, 17 Feb 2012 05:33:38 +0000</pubDate>
		<guid isPermaLink="false">http://rustyjeans.com/?page_id=7#comment-2657</guid>
		<description>Joseph, the class selector in jQuery uses a period. # is for selecting by id. To select all textareas with a class of &quot;message&quot; you could use the following code: $(&#039;.message&#039;).inputlimiter({ limit: 300 });</description>
		<content:encoded><![CDATA[<p>Joseph, the class selector in jQuery uses a period. # is for selecting by id. To select all textareas with a class of &#8220;message&#8221; you could use the following code: $(&#8216;.message&#8217;).inputlimiter({ limit: 300 });</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Input Limiter by Joseph</title>
		<link>http://rustyjeans.com/jquery-plugins/input-limiter/comment-page-1#comment-2655</link>
		<dc:creator>Joseph</dc:creator>
		<pubDate>Fri, 17 Feb 2012 05:03:12 +0000</pubDate>
		<guid isPermaLink="false">http://rustyjeans.com/?page_id=7#comment-2655</guid>
		<description>Hi,
Need help in utilizing this plugin.  I managed to make it work in one of my text fields However Im not too sure how to do it with a class (which is used by my textareas), although limit is enforced, I can&#039;t see the limittext

$(&#039;#message&#039;).inputlimiter({                                        limit: 300,                                        remText: &#039;%n characters remaining&#039;,                                });

The id&#039;s of both text area (and supposedly the span where the message will show is dynamically created - thats why im using class)</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Need help in utilizing this plugin.  I managed to make it work in one of my text fields However Im not too sure how to do it with a class (which is used by my textareas), although limit is enforced, I can&#8217;t see the limittext</p>
<p>$(&#8216;#message&#8217;).inputlimiter({                                        limit: 300,                                        remText: &#8216;%n characters remaining&#8217;,                                });</p>
<p>The id&#8217;s of both text area (and supposedly the span where the message will show is dynamically created &#8211; thats why im using class)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Input Limiter by Thomas</title>
		<link>http://rustyjeans.com/jquery-plugins/input-limiter/comment-page-1#comment-1396</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Mon, 29 Aug 2011 08:55:24 +0000</pubDate>
		<guid isPermaLink="false">http://rustyjeans.com/?page_id=7#comment-1396</guid>
		<description>Hi Rusty,

thank you. 

The if-statement I proposed was wrong.
Heres a working one:
if ($(this).attr(&#039;maxlength&#039;) &amp;&amp; ((options != undefined &amp;&amp; !options.limit) &#124;&#124; options == undefined )) {

Thank you 
Thomas</description>
		<content:encoded><![CDATA[<p>Hi Rusty,</p>
<p>thank you. </p>
<p>The if-statement I proposed was wrong.<br />
Heres a working one:<br />
if ($(this).attr(&#8216;maxlength&#8217;) &amp;&amp; ((options != undefined &amp;&amp; !options.limit) || options == undefined )) {</p>
<p>Thank you<br />
Thomas</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Input Limiter by Rusty</title>
		<link>http://rustyjeans.com/jquery-plugins/input-limiter/comment-page-1#comment-1384</link>
		<dc:creator>Rusty</dc:creator>
		<pubDate>Thu, 18 Aug 2011 18:24:15 +0000</pubDate>
		<guid isPermaLink="false">http://rustyjeans.com/?page_id=7#comment-1384</guid>
		<description>Yes, I can add this in the next version.</description>
		<content:encoded><![CDATA[<p>Yes, I can add this in the next version.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

