<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
	<title>Comments for GreatWebGuy</title>
	
	<link>http://greatwebguy.com</link>
	<description>Self-proclaimed greatness is a hard thing to prove.</description>
	<lastBuildDate>Sun, 12 Jul 2009 18:04:24 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/comments/greatwebguy" type="application/rss+xml" /><item>
		<title>Comment on Setting your tabindex on your html forms automatically with jQuery by Shailesh</title>
		<link>http://feedproxy.google.com/~r/comments/greatwebguy/~3/DQPQ3H4pY38/</link>
		<dc:creator>Shailesh</dc:creator>
		<pubDate>Sun, 12 Jul 2009 18:04:24 +0000</pubDate>
		<guid isPermaLink="false">http://greatwebguy.com/?p=100#comment-1103</guid>
		<description>This is what I was able to get working (the quotes in the Alon's comment got changed to the non-ascii chars):

$(document).ready(function(){
	$('form').each(function() {
		var tabindex = 1;

		$('input,select,textarea').each(function() {
			var $input = $(this);
			if ($input.is(':visible')) {
				$input.attr("tabindex", tabindex);
				tabindex++;
			}
		});
	});
});//document.ready</description>
		<content:encoded><![CDATA[<p>This is what I was able to get working (the quotes in the Alon&#8217;s comment got changed to the non-ascii chars):</p>
<p>$(document).ready(function(){<br />
	$(&#8217;form&#8217;).each(function() {<br />
		var tabindex = 1;</p>
<p>		$(&#8217;input,select,textarea&#8217;).each(function() {<br />
			var $input = $(this);<br />
			if ($input.is(&#8217;:visible&#8217;)) {<br />
				$input.attr(&#8221;tabindex&#8221;, tabindex);<br />
				tabindex++;<br />
			}<br />
		});<br />
	});<br />
});//document.ready</p>

<p><a href="http://feedads.g.doubleclick.net/~a/ofYiNGsCTj97ZsP86IAgqOv0n04/0/da"><img src="http://feedads.g.doubleclick.net/~a/ofYiNGsCTj97ZsP86IAgqOv0n04/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ofYiNGsCTj97ZsP86IAgqOv0n04/1/da"><img src="http://feedads.g.doubleclick.net/~a/ofYiNGsCTj97ZsP86IAgqOv0n04/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
	<feedburner:origLink>http://greatwebguy.com/programming/dom/setting-your-tabindex-on-your-html-forms-automatically-with-jquery/comment-page-1/#comment-1103</feedburner:origLink></item>
	<item>
		<title>Comment on Setting your tabindex on your html forms automatically with jQuery by Alon</title>
		<link>http://feedproxy.google.com/~r/comments/greatwebguy/~3/Z6w6y2GpLQc/</link>
		<dc:creator>Alon</dc:creator>
		<pubDate>Fri, 10 Jul 2009 20:10:20 +0000</pubDate>
		<guid isPermaLink="false">http://greatwebguy.com/?p=100#comment-1102</guid>
		<description>This makes it more usable I think ... it finds textarea tags, and it will not tabindex anything that is not visible (including hidden items, or just items inside divs that are hidden etc).

function reassignTabOrders(){
   var tabindex = 1;  
   $('input,select,textarea').each(function() {  
   var $input = $(this);
   if ($input.is(':visible')) {   
      $input.attr("tabindex", tabindex);  
      tabindex++;  
   }
 });  
}</description>
		<content:encoded><![CDATA[<p>This makes it more usable I think &#8230; it finds textarea tags, and it will not tabindex anything that is not visible (including hidden items, or just items inside divs that are hidden etc).</p>
<p>function reassignTabOrders(){<br />
   var tabindex = 1;<br />
   $(&#8217;input,select,textarea&#8217;).each(function() {<br />
   var $input = $(this);<br />
   if ($input.is(&#8217;:visible&#8217;)) {<br />
      $input.attr(&#8221;tabindex&#8221;, tabindex);<br />
      tabindex++;<br />
   }<br />
 });<br />
}</p>

<p><a href="http://feedads.g.doubleclick.net/~a/QndcmeoUGzM4YIlVOOz73lQ3ng4/0/da"><img src="http://feedads.g.doubleclick.net/~a/QndcmeoUGzM4YIlVOOz73lQ3ng4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/QndcmeoUGzM4YIlVOOz73lQ3ng4/1/da"><img src="http://feedads.g.doubleclick.net/~a/QndcmeoUGzM4YIlVOOz73lQ3ng4/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
	<feedburner:origLink>http://greatwebguy.com/programming/dom/setting-your-tabindex-on-your-html-forms-automatically-with-jquery/comment-page-1/#comment-1102</feedburner:origLink></item>
	<item>
		<title>Comment on Input focus with jQuery by Xiara</title>
		<link>http://feedproxy.google.com/~r/comments/greatwebguy/~3/SKomaQMp9K8/</link>
		<dc:creator>Xiara</dc:creator>
		<pubDate>Mon, 29 Jun 2009 18:38:39 +0000</pubDate>
		<guid isPermaLink="false">http://greatwebguy.com/?p=49#comment-1098</guid>
		<description>Thanks, I needed this for one of the sites I'm working on...</description>
		<content:encoded><![CDATA[<p>Thanks, I needed this for one of the sites I&#8217;m working on&#8230;</p>

<p><a href="http://feedads.g.doubleclick.net/~a/qiQL5tNgBggLhc0kUIUouQVsio8/0/da"><img src="http://feedads.g.doubleclick.net/~a/qiQL5tNgBggLhc0kUIUouQVsio8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/qiQL5tNgBggLhc0kUIUouQVsio8/1/da"><img src="http://feedads.g.doubleclick.net/~a/qiQL5tNgBggLhc0kUIUouQVsio8/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
	<feedburner:origLink>http://greatwebguy.com/programming/dom/input-focus-with-jquery/comment-page-1/#comment-1098</feedburner:origLink></item>
	<item>
		<title>Comment on Windows Hack – Remote control your home computer from work by ttk</title>
		<link>http://feedproxy.google.com/~r/comments/greatwebguy/~3/4tnumx3DTPw/</link>
		<dc:creator>ttk</dc:creator>
		<pubDate>Fri, 26 Jun 2009 20:38:28 +0000</pubDate>
		<guid isPermaLink="false">http://greatwebguy.com/windows/terminal-service-hack/#comment-1093</guid>
		<description>try logmein.com works like a charm with any pc.</description>
		<content:encoded><![CDATA[<p>try logmein.com works like a charm with any pc.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/ALyKDGu44QuQVVnXoJXTa3smqe0/0/da"><img src="http://feedads.g.doubleclick.net/~a/ALyKDGu44QuQVVnXoJXTa3smqe0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ALyKDGu44QuQVVnXoJXTa3smqe0/1/da"><img src="http://feedads.g.doubleclick.net/~a/ALyKDGu44QuQVVnXoJXTa3smqe0/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
	<feedburner:origLink>http://greatwebguy.com/hacks/windows/terminal-service-hack/comment-page-1/#comment-1093</feedburner:origLink></item>
	<item>
		<title>Comment on Stock quote and chart from Yahoo in Java by very nice</title>
		<link>http://feedproxy.google.com/~r/comments/greatwebguy/~3/356_x4YRYA0/</link>
		<dc:creator>very nice</dc:creator>
		<pubDate>Mon, 22 Jun 2009 12:40:19 +0000</pubDate>
		<guid isPermaLink="false">http://greatwebguy.com/?p=55#comment-1087</guid>
		<description>It is good program
Thank you</description>
		<content:encoded><![CDATA[<p>It is good program<br />
Thank you</p>

<p><a href="http://feedads.g.doubleclick.net/~a/JPlmwRayAxHITUJwAfEx6mSTM8s/0/da"><img src="http://feedads.g.doubleclick.net/~a/JPlmwRayAxHITUJwAfEx6mSTM8s/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/JPlmwRayAxHITUJwAfEx6mSTM8s/1/da"><img src="http://feedads.g.doubleclick.net/~a/JPlmwRayAxHITUJwAfEx6mSTM8s/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
	<feedburner:origLink>http://greatwebguy.com/programming/java/stock-quote-and-chart-from-yahoo-in-java/comment-page-1/#comment-1087</feedburner:origLink></item>
	<item>
		<title>Comment on Pandora cutting out using naviplay bluetooth stereo dock with iPhone by Richard Noel</title>
		<link>http://feedproxy.google.com/~r/comments/greatwebguy/~3/Zclwa9bjcv0/</link>
		<dc:creator>Richard Noel</dc:creator>
		<pubDate>Sun, 21 Jun 2009 05:26:02 +0000</pubDate>
		<guid isPermaLink="false">http://greatwebguy.com/?p=113#comment-1086</guid>
		<description>Not just Pandora.  It is a bluetooth/WiFi Conflict.  Well documented.</description>
		<content:encoded><![CDATA[<p>Not just Pandora.  It is a bluetooth/WiFi Conflict.  Well documented.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/cRnVAhPk4yol4xDKP5BMhzb9V0I/0/da"><img src="http://feedads.g.doubleclick.net/~a/cRnVAhPk4yol4xDKP5BMhzb9V0I/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/cRnVAhPk4yol4xDKP5BMhzb9V0I/1/da"><img src="http://feedads.g.doubleclick.net/~a/cRnVAhPk4yol4xDKP5BMhzb9V0I/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
	<feedburner:origLink>http://greatwebguy.com/recommended/iphone/pandora-cutting-out-using-naviplay-bluetooth-stereo-dock-with-iphone/comment-page-1/#comment-1086</feedburner:origLink></item>
	<item>
		<title>Comment on Lighttpd 1.5 rewrite rules for WordPress by Dave Abrahams</title>
		<link>http://feedproxy.google.com/~r/comments/greatwebguy/~3/epd011p9myg/</link>
		<dc:creator>Dave Abrahams</dc:creator>
		<pubDate>Wed, 17 Jun 2009 18:45:50 +0000</pubDate>
		<guid isPermaLink="false">http://greatwebguy.com/lighttpd/lighttpd-15-rewrite-rules-for-wordpress-22/#comment-1081</guid>
		<description>@Bas: This post fills in the details on that technique: http://r00tshell.com/archives/2007/05/16/wordpress-lighttpd-permalinks-without-rewrite/.  I’ve seen about ten different approaches to this problem so far, but is the cleverest and simplest, and it looks like it solves other problems as well.  Working great for me so far.</description>
		<content:encoded><![CDATA[<p>@Bas: This post fills in the details on that technique: <a href="http://r00tshell.com/archives/2007/05/16/wordpress-lighttpd-permalinks-without-rewrite/" rel="nofollow">http://r00tshell.com/archives/2007/05/16/wordpress-lighttpd-permalinks-without-rewrite/</a>.  I’ve seen about ten different approaches to this problem so far, but is the cleverest and simplest, and it looks like it solves other problems as well.  Working great for me so far.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/AHQFZqy6HfN3biagFdffETd-JM8/0/da"><img src="http://feedads.g.doubleclick.net/~a/AHQFZqy6HfN3biagFdffETd-JM8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/AHQFZqy6HfN3biagFdffETd-JM8/1/da"><img src="http://feedads.g.doubleclick.net/~a/AHQFZqy6HfN3biagFdffETd-JM8/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
	<feedburner:origLink>http://greatwebguy.com/web-servers/lighttpd/lighttpd-15-rewrite-rules-for-wordpress-22/comment-page-1/#comment-1081</feedburner:origLink></item>
	<item>
		<title>Comment on SEO Friendly URL’s for Java EE frameworks by Armindo Cachada</title>
		<link>http://feedproxy.google.com/~r/comments/greatwebguy/~3/JFXunPTc6LM/</link>
		<dc:creator>Armindo Cachada</dc:creator>
		<pubDate>Sun, 14 Jun 2009 12:07:35 +0000</pubDate>
		<guid isPermaLink="false">http://greatwebguy.com/search-engines/seo-friendly-urls-for-java-ee-frameworks/#comment-1077</guid>
		<description>For those who are running on struts 2.1  I have written a detailed tutorial on how to have hierarchical seo friendly urls using the convention plugin.

&lt;a href="http://simplyolaf.blogspot.com/2009/06/creating-hierarchical-actions-in-struts.html" rel="nofollow"&gt;creating hierarchical actions in struts 2&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>For those who are running on struts 2.1  I have written a detailed tutorial on how to have hierarchical seo friendly urls using the convention plugin.</p>
<p><a href="http://simplyolaf.blogspot.com/2009/06/creating-hierarchical-actions-in-struts.html" rel="nofollow">creating hierarchical actions in struts 2</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/TJf2TizpaaY_GuvlE8m0gyVtrKQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/TJf2TizpaaY_GuvlE8m0gyVtrKQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/TJf2TizpaaY_GuvlE8m0gyVtrKQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/TJf2TizpaaY_GuvlE8m0gyVtrKQ/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
	<feedburner:origLink>http://greatwebguy.com/search-engines/seo-friendly-urls-for-java-ee-frameworks/comment-page-1/#comment-1077</feedburner:origLink></item>
	<item>
		<title>Comment on PHP (Wordpress) development using Eclipse and XAMPP by viji</title>
		<link>http://feedproxy.google.com/~r/comments/greatwebguy/~3/g-iMQc_4Odg/</link>
		<dc:creator>viji</dc:creator>
		<pubDate>Wed, 10 Jun 2009 22:41:15 +0000</pubDate>
		<guid isPermaLink="false">http://greatwebguy.com/programming/eclipse/php-development-using-eclipse/#comment-1074</guid>
		<description>Ok the problem is solved. I changed my workspace as xampp/htdocs

Thanks</description>
		<content:encoded><![CDATA[<p>Ok the problem is solved. I changed my workspace as xampp/htdocs</p>
<p>Thanks</p>

<p><a href="http://feedads.g.doubleclick.net/~a/U5pARh0bkkl1jYu0CBw_hQZJ8bs/0/da"><img src="http://feedads.g.doubleclick.net/~a/U5pARh0bkkl1jYu0CBw_hQZJ8bs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/U5pARh0bkkl1jYu0CBw_hQZJ8bs/1/da"><img src="http://feedads.g.doubleclick.net/~a/U5pARh0bkkl1jYu0CBw_hQZJ8bs/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
	<feedburner:origLink>http://greatwebguy.com/programming/eclipse/php-development-using-eclipse/comment-page-1/#comment-1074</feedburner:origLink></item>
	<item>
		<title>Comment on PHP (Wordpress) development using Eclipse and XAMPP by viji</title>
		<link>http://feedproxy.google.com/~r/comments/greatwebguy/~3/D3GMy-htlOA/</link>
		<dc:creator>viji</dc:creator>
		<pubDate>Wed, 10 Jun 2009 22:18:05 +0000</pubDate>
		<guid isPermaLink="false">http://greatwebguy.com/programming/eclipse/php-development-using-eclipse/#comment-1073</guid>
		<description>Hi,
Thanks for the tutorial. I created a new project called MyFirstPHP and in that created test.php. But when I run the php file http://localhost/test I am getting the error:
Object not found!
The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again.  

Please help me.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Thanks for the tutorial. I created a new project called MyFirstPHP and in that created test.php. But when I run the php file <a href="http://localhost/test" rel="nofollow">http://localhost/test</a> I am getting the error:<br />
Object not found!<br />
The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again.  </p>
<p>Please help me.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/O2G7jhjibumB3LaCPNWyGpWcYl0/0/da"><img src="http://feedads.g.doubleclick.net/~a/O2G7jhjibumB3LaCPNWyGpWcYl0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/O2G7jhjibumB3LaCPNWyGpWcYl0/1/da"><img src="http://feedads.g.doubleclick.net/~a/O2G7jhjibumB3LaCPNWyGpWcYl0/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
	<feedburner:origLink>http://greatwebguy.com/programming/eclipse/php-development-using-eclipse/comment-page-1/#comment-1073</feedburner:origLink></item>
</channel>
</rss><!-- Dynamic Page Served (once) in 0.297 seconds -->
