<?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 amnuts</title>
	<atom:link href="http://blog.amnuts.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.amnuts.com</link>
	<description>php projects, javascript, and... stuff.</description>
	<lastBuildDate>Thu, 11 Feb 2010 09:33:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Easy table sorting with jQuery by Andy</title>
		<link>http://blog.amnuts.com/2009/01/29/easy-table-sorting-with-jquery/comment-page-1/#comment-81</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Thu, 11 Feb 2010 09:33:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.amnuts.com/?p=115#comment-81</guid>
		<description>bnaffas; have you tried creating your own parser for the column that contains the percentages?  Something like:

[code language=&quot;javascript&quot;]
    $.tablesorter.addParser({
        id     : &#039;percentages&#039;,
        type   : &#039;numeric&#039;,
        is     : function(s) { return false; },
        format : function(s) {
            var reg = /(.*?)%/i;
            if (reg.test(s)) {
                var match = reg.exec(s);
                return parseInt(match[1]);
            } else {
                return parseInt(s);
            }
        }
    });
[/code]

And than you include it such as:

[code language=&quot;javascript&quot;]
$(&quot;table&quot;).tablesorter({
  headers: {
    3: { sorter:&#039;percentages&#039; }
  }
});
[/code]

where &#039;3&#039; is the column number where your percentages are.

As I&#039;ve just got it together this morning, I can&#039;t promise the above is exact! :)</description>
		<content:encoded><![CDATA[<p>bnaffas; have you tried creating your own parser for the column that contains the percentages?  Something like:</p>
<pre class="brush: jscript;">
    $.tablesorter.addParser({
        id     : 'percentages',
        type   : 'numeric',
        is     : function(s) { return false; },
        format : function(s) {
            var reg = /(.*?)%/i;
            if (reg.test(s)) {
                var match = reg.exec(s);
                return parseInt(match[1]);
            } else {
                return parseInt(s);
            }
        }
    });
</pre>
<p>And than you include it such as:</p>
<pre class="brush: jscript;">
$(&quot;table&quot;).tablesorter({
  headers: {
    3: { sorter:'percentages' }
  }
});
</pre>
<p>where &#8216;3&#8242; is the column number where your percentages are.</p>
<p>As I&#8217;ve just got it together this morning, I can&#8217;t promise the above is exact! <img src='http://blog.amnuts.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Easy table sorting with jQuery by bnaffas</title>
		<link>http://blog.amnuts.com/2009/01/29/easy-table-sorting-with-jquery/comment-page-1/#comment-80</link>
		<dc:creator>bnaffas</dc:creator>
		<pubDate>Wed, 10 Feb 2010 23:05:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.amnuts.com/?p=115#comment-80</guid>
		<description>I am using this sorting library too. Have you run into an issue with sorting percents? 

Given the following values { 2.0%, 25%, 10% }, the library will sort the values as {10%, 2.0%, 25% } because of the plain text sorting on the 1 versus the 2 (in both 2.0 and 25).</description>
		<content:encoded><![CDATA[<p>I am using this sorting library too. Have you run into an issue with sorting percents? </p>
<p>Given the following values { 2.0%, 25%, 10% }, the library will sort the values as {10%, 2.0%, 25% } because of the plain text sorting on the 1 versus the 2 (in both 2.0 and 25).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding new items to RSS feed &#8211; it shouldn&#8217;t be this hard! by Andy</title>
		<link>http://blog.amnuts.com/2010/01/28/adding-new-items-to-rss-feed-it-shouldnt-be-this-hard/comment-page-1/#comment-79</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Fri, 29 Jan 2010 16:29:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.amnuts.com/?p=155#comment-79</guid>
		<description>I feel kinda bad in the way I worded some of the above, Pádraic.  It makes it sound like I don&#039;t appreciate the hard work you have put in to it, and continue to do so.  Let me assure you, that is not the case! :-)

I think the frustration was more driven by the documentation.  The manual seems to be lacking a bit (but that could just be my take on it), but I also appreciate that also takes time to write!  Only so much time in the day, eh? ;-)</description>
		<content:encoded><![CDATA[<p>I feel kinda bad in the way I worded some of the above, Pádraic.  It makes it sound like I don&#8217;t appreciate the hard work you have put in to it, and continue to do so.  Let me assure you, that is not the case! <img src='http://blog.amnuts.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>I think the frustration was more driven by the documentation.  The manual seems to be lacking a bit (but that could just be my take on it), but I also appreciate that also takes time to write!  Only so much time in the day, eh? <img src='http://blog.amnuts.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding new items to RSS feed &#8211; it shouldn&#8217;t be this hard! by Padraic</title>
		<link>http://blog.amnuts.com/2010/01/28/adding-new-items-to-rss-feed-it-shouldnt-be-this-hard/comment-page-1/#comment-78</link>
		<dc:creator>Padraic</dc:creator>
		<pubDate>Fri, 29 Jan 2010 15:59:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.amnuts.com/?p=155#comment-78</guid>
		<description>Blogged a reply by way of explanation ;).

http://is.gd/7ivo5

In short, its being worked on but I ran out of time to add it for ZF 1.10. The new components are fairly time consuming work ;).</description>
		<content:encoded><![CDATA[<p>Blogged a reply by way of explanation <img src='http://blog.amnuts.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
<p><a href="http://is.gd/7ivo5" rel="nofollow">http://is.gd/7ivo5</a></p>
<p>In short, its being worked on but I ran out of time to add it for ZF 1.10. The new components are fairly time consuming work <img src='http://blog.amnuts.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Same height for elements by Same height for elements &#8211; now with jQuery goodness! at amnuts</title>
		<link>http://blog.amnuts.com/2007/02/09/same-height-for-elements/comment-page-1/#comment-76</link>
		<dc:creator>Same height for elements &#8211; now with jQuery goodness! at amnuts</dc:creator>
		<pubDate>Thu, 24 Dec 2009 00:25:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.amnuts.com/2007/02/09/same-height-for-elements/#comment-76</guid>
		<description>[...] A while ago I wrote a post on how to use the Prototype js library to make elements on your page have the same height. [...]</description>
		<content:encoded><![CDATA[<p>[...] A while ago I wrote a post on how to use the Prototype js library to make elements on your page have the same height. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Scriptaculous slider trick by Scriptaculous slider trick &#124; Ajaxmint - Endless Ajax samples on jQuery, MooTools, ExtJS, Dojo, Prototype and PHP</title>
		<link>http://blog.amnuts.com/2007/06/14/scriptaculous-slider-trick/comment-page-1/#comment-75</link>
		<dc:creator>Scriptaculous slider trick &#124; Ajaxmint - Endless Ajax samples on jQuery, MooTools, ExtJS, Dojo, Prototype and PHP</dc:creator>
		<pubDate>Fri, 11 Dec 2009 05:08:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.amnuts.com/2007/06/14/scriptaculous-slider-trick/#comment-75</guid>
		<description>[...] Tutorial&#160;       Posted in ajax &#124; Tags: color slide, gripper, Scriptaculous, slide, slider   &#171; [...]</description>
		<content:encoded><![CDATA[<p>[...] Tutorial&nbsp;       Posted in ajax | Tags: color slide, gripper, Scriptaculous, slide, slider   &laquo; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Text box &#8216;hint&#8217; values with jQuery by Andy</title>
		<link>http://blog.amnuts.com/2009/02/17/text-box-hint-values-with-jquery/comment-page-1/#comment-74</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Mon, 07 Dec 2009 13:59:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.amnuts.com/?p=129#comment-74</guid>
		<description>Is this a problem on one specific browser, or does it happen on multiple ones?  Also, what version of jQuery are you using?</description>
		<content:encoded><![CDATA[<p>Is this a problem on one specific browser, or does it happen on multiple ones?  Also, what version of jQuery are you using?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Text box &#8216;hint&#8217; values with jQuery by Ashish Upadhyay</title>
		<link>http://blog.amnuts.com/2009/02/17/text-box-hint-values-with-jquery/comment-page-1/#comment-73</link>
		<dc:creator>Ashish Upadhyay</dc:creator>
		<pubDate>Mon, 07 Dec 2009 12:34:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.amnuts.com/?p=129#comment-73</guid>
		<description>The css rule is correct, it is .hint

I have placed the entier jQuery script into my custom.js file.
I have attached this file in the head of html file.
with in , I have written the calling statement as following


$(function() {
$(&#039;#inpForwardOptions&#039;).textboxhint({
  hint: &#039;Select / add phones&#039;
 });	
});


I have commented the code and put into document ready, even though problem is still same
PROBLEM:
#1. CSS is not working 
#2. on focus or click of inputbox test is not disappear
This problem is occured while pressing F5 to refresh the page</description>
		<content:encoded><![CDATA[<p>The css rule is correct, it is .hint</p>
<p>I have placed the entier jQuery script into my custom.js file.<br />
I have attached this file in the head of html file.<br />
with in , I have written the calling statement as following</p>
<p>$(function() {<br />
$(&#8216;#inpForwardOptions&#8217;).textboxhint({<br />
  hint: &#8216;Select / add phones&#8217;<br />
 });<br />
});</p>
<p>I have commented the code and put into document ready, even though problem is still same<br />
PROBLEM:<br />
#1. CSS is not working<br />
#2. on focus or click of inputbox test is not disappear<br />
This problem is occured while pressing F5 to refresh the page</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Text box &#8216;hint&#8217; values with jQuery by Andy</title>
		<link>http://blog.amnuts.com/2009/02/17/text-box-hint-values-with-jquery/comment-page-1/#comment-72</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Mon, 07 Dec 2009 11:57:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.amnuts.com/?p=129#comment-72</guid>
		<description>Hi Ashish,

A couple things to check...  The css rule is &quot;.hint&quot; and not &quot;hint&quot;, right?  Also, do you have the textboxhint call within a document ready/window load event handler so that the element is loaded before the js tries to update it?</description>
		<content:encoded><![CDATA[<p>Hi Ashish,</p>
<p>A couple things to check&#8230;  The css rule is &#8220;.hint&#8221; and not &#8220;hint&#8221;, right?  Also, do you have the textboxhint call within a document ready/window load event handler so that the element is loaded before the js tries to update it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Text box &#8216;hint&#8217; values with jQuery by Ashish Upadhyay</title>
		<link>http://blog.amnuts.com/2009/02/17/text-box-hint-values-with-jquery/comment-page-1/#comment-71</link>
		<dc:creator>Ashish Upadhyay</dc:creator>
		<pubDate>Mon, 07 Dec 2009 09:13:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.amnuts.com/?p=129#comment-71</guid>
		<description>This is very nice piece of code, which I found from couple of other code for same purpose, but only one problem I found, when I integrate in my application. The problem is 
When the page is loaded the input box has applied css called hints, but when I press F5 to refresh the page that time the css &quot;hints&quot; is removed and the text in the inputbox appears with default css. 

can u suggest, what the thing I missed out.
I have created a css as hint {background:#d3d3d3}
And 
call this function as following
$(&#039;#inpForwardOptions&#039;).textboxhint({
			hint: &#039;Select / add phones&#039;
});</description>
		<content:encoded><![CDATA[<p>This is very nice piece of code, which I found from couple of other code for same purpose, but only one problem I found, when I integrate in my application. The problem is<br />
When the page is loaded the input box has applied css called hints, but when I press F5 to refresh the page that time the css &#8220;hints&#8221; is removed and the text in the inputbox appears with default css. </p>
<p>can u suggest, what the thing I missed out.<br />
I have created a css as hint {background:#d3d3d3}<br />
And<br />
call this function as following<br />
$(&#8216;#inpForwardOptions&#8217;).textboxhint({<br />
			hint: &#8216;Select / add phones&#8217;<br />
});</p>
]]></content:encoded>
	</item>
</channel>
</rss>
