<?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 IP address plugin</title>
	<atom:link href="http://mlntn.com/2009/12/30/jquery-ip-address-plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://mlntn.com/2009/12/30/jquery-ip-address-plugin/</link>
	<description>Maniacal musings of a pixel perfectionist</description>
	<lastBuildDate>Mon, 05 Jul 2010 15:35:47 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Vivek</title>
		<link>http://mlntn.com/2009/12/30/jquery-ip-address-plugin/comment-page-1/#comment-141</link>
		<dc:creator>Vivek</dc:creator>
		<pubDate>Fri, 04 Jun 2010 12:05:32 +0000</pubDate>
		<guid isPermaLink="false">http://mlntn.com/?p=113#comment-141</guid>
		<description>Hi,

After accepting an IP address, I have a button with which I try to revert back to the old value, but even though it sets the value back, the UI doesn&#039;t reflect it.

Any solution for this?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>After accepting an IP address, I have a button with which I try to revert back to the old value, but even though it sets the value back, the UI doesn&#8217;t reflect it.</p>
<p>Any solution for this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vivek</title>
		<link>http://mlntn.com/2009/12/30/jquery-ip-address-plugin/comment-page-1/#comment-140</link>
		<dc:creator>Vivek</dc:creator>
		<pubDate>Fri, 04 Jun 2010 06:24:30 +0000</pubDate>
		<guid isPermaLink="false">http://mlntn.com/?p=113#comment-140</guid>
		<description>This one does the trick for me

if (e.keyCode == 110 &#124;&#124; e.keyCode == 190) {
        	if ($(this).val().length) {
        		if (next_octet.length) {
        			next_octet.focus();
        			next_octet.select();
        		}
        	}
        	return false;
        }</description>
		<content:encoded><![CDATA[<p>This one does the trick for me</p>
<p>if (e.keyCode == 110 || e.keyCode == 190) {<br />
        	if ($(this).val().length) {<br />
        		if (next_octet.length) {<br />
        			next_octet.focus();<br />
        			next_octet.select();<br />
        		}<br />
        	}<br />
        	return false;<br />
        }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luther</title>
		<link>http://mlntn.com/2009/12/30/jquery-ip-address-plugin/comment-page-1/#comment-138</link>
		<dc:creator>Luther</dc:creator>
		<pubDate>Thu, 06 May 2010 08:41:00 +0000</pubDate>
		<guid isPermaLink="false">http://mlntn.com/?p=113#comment-138</guid>
		<description>Hi,

It&#039;s pretty cool plug-in, Thanx a lot.
In my input habit. I used to let the period char act like tab.
And it should not be display in last field if it is empty.
So I make some modified. FYI.
---ORIG--- Line: 66
// jump to next octet on period if this octet has a value
if ((e.keyCode == 110 &#124;&#124; e.keyCode == 190) &amp;&amp; this.value.length) {
  if (next_octet.length) {
    $(this).trigger(&#039;blur&#039;);
    next_octet.focus();
    return false;
  }
}

---NEW---
// jump to next octet on period if this octet has a value
if (e.keyCode == 110 &#124;&#124; e.keyCode == 190)
{
  if (this.value.length)
  {
    if (next_octet.length) 
    {
      $(this).trigger(&#039;blur&#039;);
      next_octet.focus();
      next_octet.select();
    }
  }
  return false;
}</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>It&#8217;s pretty cool plug-in, Thanx a lot.<br />
In my input habit. I used to let the period char act like tab.<br />
And it should not be display in last field if it is empty.<br />
So I make some modified. FYI.<br />
&#8212;ORIG&#8212; Line: 66<br />
// jump to next octet on period if this octet has a value<br />
if ((e.keyCode == 110 || e.keyCode == 190) &amp;&amp; this.value.length) {<br />
  if (next_octet.length) {<br />
    $(this).trigger(&#8216;blur&#8217;);<br />
    next_octet.focus();<br />
    return false;<br />
  }<br />
}</p>
<p>&#8212;NEW&#8212;<br />
// jump to next octet on period if this octet has a value<br />
if (e.keyCode == 110 || e.keyCode == 190)<br />
{<br />
  if (this.value.length)<br />
  {<br />
    if (next_octet.length)<br />
    {<br />
      $(this).trigger(&#8216;blur&#8217;);<br />
      next_octet.focus();<br />
      next_octet.select();<br />
    }<br />
  }<br />
  return false;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ekho</title>
		<link>http://mlntn.com/2009/12/30/jquery-ip-address-plugin/comment-page-1/#comment-131</link>
		<dc:creator>Ekho</dc:creator>
		<pubDate>Wed, 24 Mar 2010 12:50:44 +0000</pubDate>
		<guid isPermaLink="false">http://mlntn.com/?p=113#comment-131</guid>
		<description>minor bugfix:
line 66
        // jump to next octet on period if this octet has a value
        if ((e.keyCode == 110 &#124;&#124; e.keyCode == 190) &amp;&amp; this.value.length) {
          if (next_octet.length) {
            $(this).trigger(&#039;blur&#039;);
            next_octet.focus();
          }
          return false;
        }
instead of
        // jump to next octet on period if this octet has a value
        if ((e.keyCode == 110 &#124;&#124; e.keyCode == 190) &amp;&amp; this.value.length) {
          if (next_octet.length) {
            $(this).trigger(&#039;blur&#039;);
            next_octet.focus();
            return false;
          }
        }

this fix prevents typing dots in the last octet</description>
		<content:encoded><![CDATA[<p>minor bugfix:<br />
line 66<br />
        // jump to next octet on period if this octet has a value<br />
        if ((e.keyCode == 110 || e.keyCode == 190) &amp;&amp; this.value.length) {<br />
          if (next_octet.length) {<br />
            $(this).trigger(&#8216;blur&#8217;);<br />
            next_octet.focus();<br />
          }<br />
          return false;<br />
        }<br />
instead of<br />
        // jump to next octet on period if this octet has a value<br />
        if ((e.keyCode == 110 || e.keyCode == 190) &amp;&amp; this.value.length) {<br />
          if (next_octet.length) {<br />
            $(this).trigger(&#8216;blur&#8217;);<br />
            next_octet.focus();<br />
            return false;<br />
          }<br />
        }</p>
<p>this fix prevents typing dots in the last octet</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Niku</title>
		<link>http://mlntn.com/2009/12/30/jquery-ip-address-plugin/comment-page-1/#comment-129</link>
		<dc:creator>Niku</dc:creator>
		<pubDate>Wed, 03 Mar 2010 12:29:18 +0000</pubDate>
		<guid isPermaLink="false">http://mlntn.com/?p=113#comment-129</guid>
		<description>With many fields don&#039;t want to work :(</description>
		<content:encoded><![CDATA[<p>With many fields don&#8217;t want to work <img src='http://mlntn.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jared</title>
		<link>http://mlntn.com/2009/12/30/jquery-ip-address-plugin/comment-page-1/#comment-128</link>
		<dc:creator>Jared</dc:creator>
		<pubDate>Mon, 01 Mar 2010 15:37:58 +0000</pubDate>
		<guid isPermaLink="false">http://mlntn.com/?p=113#comment-128</guid>
		<description>JS: Can you elaborate?</description>
		<content:encoded><![CDATA[<p>JS: Can you elaborate?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JS</title>
		<link>http://mlntn.com/2009/12/30/jquery-ip-address-plugin/comment-page-1/#comment-127</link>
		<dc:creator>JS</dc:creator>
		<pubDate>Thu, 25 Feb 2010 18:18:49 +0000</pubDate>
		<guid isPermaLink="false">http://mlntn.com/?p=113#comment-127</guid>
		<description>Hi,

This is a great plugin!
However I think it doesn&#039;t perform as expected when several IP textboxes are in the same form. Can someone confirm that please?

Thanks!</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>This is a great plugin!<br />
However I think it doesn&#8217;t perform as expected when several IP textboxes are in the same form. Can someone confirm that please?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rianto Wahyudi</title>
		<link>http://mlntn.com/2009/12/30/jquery-ip-address-plugin/comment-page-1/#comment-115</link>
		<dc:creator>Rianto Wahyudi</dc:creator>
		<pubDate>Sun, 10 Jan 2010 01:17:43 +0000</pubDate>
		<guid isPermaLink="false">http://mlntn.com/?p=113#comment-115</guid>
		<description>This is awesome and I can see it will be widely used if it working properly !!  
I can&#039;t wait till you complete the copy/paste function !
It will be nice if the text box behave like a normal textbox ( just like Masked Input Plugin where you can double-click to select subset of the date , triple click to select everything. )</description>
		<content:encoded><![CDATA[<p>This is awesome and I can see it will be widely used if it working properly !!<br />
I can&#8217;t wait till you complete the copy/paste function !<br />
It will be nice if the text box behave like a normal textbox ( just like Masked Input Plugin where you can double-click to select subset of the date , triple click to select everything. )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jared</title>
		<link>http://mlntn.com/2009/12/30/jquery-ip-address-plugin/comment-page-1/#comment-114</link>
		<dc:creator>Jared</dc:creator>
		<pubDate>Fri, 08 Jan 2010 21:03:16 +0000</pubDate>
		<guid isPermaLink="false">http://mlntn.com/?p=113#comment-114</guid>
		<description>Darren: You can use this under the terms of either the MIT License or GPL - just like jQuery (http://docs.jquery.com/License).</description>
		<content:encoded><![CDATA[<p>Darren: You can use this under the terms of either the MIT License or GPL &#8211; just like jQuery (<a href="http://docs.jquery.com/License" rel="nofollow">http://docs.jquery.com/License</a>).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Darren Schreiber</title>
		<link>http://mlntn.com/2009/12/30/jquery-ip-address-plugin/comment-page-1/#comment-112</link>
		<dc:creator>Darren Schreiber</dc:creator>
		<pubDate>Wed, 06 Jan 2010 04:34:03 +0000</pubDate>
		<guid isPermaLink="false">http://mlntn.com/?p=113#comment-112</guid>
		<description>This is great. What&#039;s the license? We&#039;d like to use this in FreePBX 3 (another OS project).

btw, it&#039;d be awesome if this could be extended to allow IPv6 addresses.</description>
		<content:encoded><![CDATA[<p>This is great. What&#8217;s the license? We&#8217;d like to use this in FreePBX 3 (another OS project).</p>
<p>btw, it&#8217;d be awesome if this could be extended to allow IPv6 addresses.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
