<?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: Find the biggest from the unordered list or ordered list</title>
	<atom:link href="http://www.myhtmlworld.com/web-development/find-the-biggest-from-the-unordered-list-or-ordered-list.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.myhtmlworld.com/web-development/find-the-biggest-from-the-unordered-list-or-ordered-list.html</link>
	<description>myhtmlworld.com</description>
	<lastBuildDate>Wed, 20 Jul 2011 05:54:19 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Shuja Shabandri</title>
		<link>http://www.myhtmlworld.com/web-development/find-the-biggest-from-the-unordered-list-or-ordered-list.html/comment-page-1#comment-169</link>
		<dc:creator>Shuja Shabandri</dc:creator>
		<pubDate>Sun, 24 May 2009 08:05:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.myhtmlworld.com/?p=256#comment-169</guid>
		<description>Alternate method would be

&lt;pre&gt;
    $(document).ready(function() {
        var biggest = 0;
        var bigIndex = 0;
        $(&quot;#list li&quot;).each(function(i,el){
            var val = parseInt($(el).text());
            if(val &gt; biggest) {
                biggest = val;
                bigIndex = i
            }
        });
        alert(&quot;postion &quot;+ (bigIndex + 1) + &quot; is the biggest&quot;);
        $(&quot;#list li&quot;).eq(bigIndex).addClass(&#039;bigger&#039;);
    });
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Alternate method would be</p>
<pre>
    $(document).ready(function() {
        var biggest = 0;
        var bigIndex = 0;
        $("#list li").each(function(i,el){
            var val = parseInt($(el).text());
            if(val &gt; biggest) {
                biggest = val;
                bigIndex = i
            }
        });
        alert("postion "+ (bigIndex + 1) + " is the biggest");
        $("#list li").eq(bigIndex).addClass('bigger');
    });
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Myhtmlworld completed 6 months &#124; Sunil's blog</title>
		<link>http://www.myhtmlworld.com/web-development/find-the-biggest-from-the-unordered-list-or-ordered-list.html/comment-page-1#comment-168</link>
		<dc:creator>Myhtmlworld completed 6 months &#124; Sunil's blog</dc:creator>
		<pubDate>Sat, 02 May 2009 03:25:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.myhtmlworld.com/?p=256#comment-168</guid>
		<description>[...] Find the biggest from the unordered list or ordered list [...]</description>
		<content:encoded><![CDATA[<p>[...] Find the biggest from the unordered list or ordered list [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

