<?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: Selecting input-fields with maxlength via jQuery</title>
	<atom:link href="http://herr-schuessler.de/blog/selecting-input-fields-with-maxlength-via-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://herr-schuessler.de/blog/selecting-input-fields-with-maxlength-via-jquery/</link>
	<description>Dev-Blog</description>
	<lastBuildDate>Wed, 18 Jan 2012 19:03:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Tgr</title>
		<link>http://herr-schuessler.de/blog/selecting-input-fields-with-maxlength-via-jquery/comment-page-1/#comment-8490</link>
		<dc:creator>Tgr</dc:creator>
		<pubDate>Thu, 12 May 2011 17:35:57 +0000</pubDate>
		<guid isPermaLink="false">http://herr-schuessler.de/?p=178#comment-8490</guid>
		<description>This is fixed in jQuery 1.6.</description>
		<content:encoded><![CDATA[<p>This is fixed in jQuery 1.6.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: guandalino</title>
		<link>http://herr-schuessler.de/blog/selecting-input-fields-with-maxlength-via-jquery/comment-page-1/#comment-8011</link>
		<dc:creator>guandalino</dc:creator>
		<pubDate>Tue, 22 Mar 2011 22:12:26 +0000</pubDate>
		<guid isPermaLink="false">http://herr-schuessler.de/?p=178#comment-8011</guid>
		<description>Hey, thanks for this blog post... I had the same issue and found great help here. Note that IE6 also gives 2147483647 as implicit maxlength value, so if you want to update the table you are welcome ;-) Best regards and thanks again.</description>
		<content:encoded><![CDATA[<p>Hey, thanks for this blog post&#8230; I had the same issue and found great help here. Note that IE6 also gives 2147483647 as implicit maxlength value, so if you want to update the table you are welcome ;-) Best regards and thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christoph Schüßler</title>
		<link>http://herr-schuessler.de/blog/selecting-input-fields-with-maxlength-via-jquery/comment-page-1/#comment-6722</link>
		<dc:creator>Christoph Schüßler</dc:creator>
		<pubDate>Mon, 16 Aug 2010 09:05:03 +0000</pubDate>
		<guid isPermaLink="false">http://herr-schuessler.de/?p=178#comment-6722</guid>
		<description>@Hari: That&#039;s exactly the problem I described above - your code doesn&#039;t work. Please re-read... ;-)</description>
		<content:encoded><![CDATA[<p>@Hari: That&#8217;s exactly the problem I described above &#8211; your code doesn&#8217;t work. Please re-read&#8230; ;-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hari</title>
		<link>http://herr-schuessler.de/blog/selecting-input-fields-with-maxlength-via-jquery/comment-page-1/#comment-6695</link>
		<dc:creator>Hari</dc:creator>
		<pubDate>Wed, 11 Aug 2010 13:09:26 +0000</pubDate>
		<guid isPermaLink="false">http://herr-schuessler.de/?p=178#comment-6695</guid>
		<description>Wouldn&#039;t it be better to test for existence of maxlength attribute?

$(&quot;input[maxlength]&quot;) // does not include input w/o maxlenght

or

$(&quot;input&quot;)[0].hasAttribute(&quot;maxlength&quot;) // test on DOM element</description>
		<content:encoded><![CDATA[<p>Wouldn&#8217;t it be better to test for existence of maxlength attribute?</p>
<p>$(&#8220;input[maxlength]&#8220;) // does not include input w/o maxlenght</p>
<p>or</p>
<p>$(&#8220;input&#8221;)[0].hasAttribute(&#8220;maxlength&#8221;) // test on DOM element</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bobbyze</title>
		<link>http://herr-schuessler.de/blog/selecting-input-fields-with-maxlength-via-jquery/comment-page-1/#comment-5818</link>
		<dc:creator>Bobbyze</dc:creator>
		<pubDate>Mon, 22 Feb 2010 07:26:51 +0000</pubDate>
		<guid isPermaLink="false">http://herr-schuessler.de/?p=178#comment-5818</guid>
		<description>Thank for your Blog ............

can you tell me more jquery design with simple coding .

bobbyze</description>
		<content:encoded><![CDATA[<p>Thank for your Blog &#8230;&#8230;&#8230;&#8230;</p>
<p>can you tell me more jquery design with simple coding .</p>
<p>bobbyze</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christoph Schüßler</title>
		<link>http://herr-schuessler.de/blog/selecting-input-fields-with-maxlength-via-jquery/comment-page-1/#comment-1868</link>
		<dc:creator>Christoph Schüßler</dc:creator>
		<pubDate>Wed, 25 Mar 2009 17:50:45 +0000</pubDate>
		<guid isPermaLink="false">http://herr-schuessler.de/?p=178#comment-1868</guid>
		<description>I wouldn&#039;t exactly call it the &quot;best&quot; option insofar as it adds unnecessary class names to the source. The beauty of jQuery&#039;s selector engine is that it allows to select elements in very different ways, and selecting by attribute (which is part of CSS 3 but very badly supported as of now) is an especially useful feature. I would rather call it the best option, but as my article shows, it&#039;s just not the easiest, an with regards to future browser generations, maybe not the safest. But, although I really don&#039;t like to make predictions here, I would guess that different browser vendors will stick to their own quirks in this matter...</description>
		<content:encoded><![CDATA[<p>I wouldn&#8217;t exactly call it the &#8220;best&#8221; option insofar as it adds unnecessary class names to the source. The beauty of jQuery&#8217;s selector engine is that it allows to select elements in very different ways, and selecting by attribute (which is part of CSS 3 but very badly supported as of now) is an especially useful feature. I would rather call it the best option, but as my article shows, it&#8217;s just not the easiest, an with regards to future browser generations, maybe not the safest. But, although I really don&#8217;t like to make predictions here, I would guess that different browser vendors will stick to their own quirks in this matter&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bart</title>
		<link>http://herr-schuessler.de/blog/selecting-input-fields-with-maxlength-via-jquery/comment-page-1/#comment-1864</link>
		<dc:creator>Bart</dc:creator>
		<pubDate>Wed, 25 Mar 2009 16:24:03 +0000</pubDate>
		<guid isPermaLink="false">http://herr-schuessler.de/?p=178#comment-1864</guid>
		<description>Because we cannot predict how future or new browser versions will handle these implicit values I guess the best option is to add class=&#039;maxlength&#039; to each input and/or textarea field you would like to access. You agree?</description>
		<content:encoded><![CDATA[<p>Because we cannot predict how future or new browser versions will handle these implicit values I guess the best option is to add class=&#8217;maxlength&#8217; to each input and/or textarea field you would like to access. You agree?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christoph Schüßler</title>
		<link>http://herr-schuessler.de/blog/selecting-input-fields-with-maxlength-via-jquery/comment-page-1/#comment-1193</link>
		<dc:creator>Christoph Schüßler</dc:creator>
		<pubDate>Sat, 06 Dec 2008 00:14:44 +0000</pubDate>
		<guid isPermaLink="false">http://herr-schuessler.de/?p=178#comment-1193</guid>
		<description>I just ran the same test in different browser... moep.</description>
		<content:encoded><![CDATA[<p>I just ran the same test in different browser&#8230; moep.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe McCann</title>
		<link>http://herr-schuessler.de/blog/selecting-input-fields-with-maxlength-via-jquery/comment-page-1/#comment-1192</link>
		<dc:creator>Joe McCann</dc:creator>
		<pubDate>Fri, 05 Dec 2008 15:37:30 +0000</pubDate>
		<guid isPermaLink="false">http://herr-schuessler.de/?p=178#comment-1192</guid>
		<description>Wow, very impressive.  While just working with a ton of forms on my latest app, I&#039;m glad I never had to select all by maxlength!

Also, how did you determine the other numbers in the other browsers?  What test/code did you run?</description>
		<content:encoded><![CDATA[<p>Wow, very impressive.  While just working with a ton of forms on my latest app, I&#8217;m glad I never had to select all by maxlength!</p>
<p>Also, how did you determine the other numbers in the other browsers?  What test/code did you run?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

