<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>My Galagzee! &#187; jquery</title>
	<atom:link href="http://my.galagzee.com/tag/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://my.galagzee.com</link>
	<description>Tech in a Galagzee, Not So Far Away.</description>
	<lastBuildDate>Fri, 20 Jan 2012 18:46:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Disabling reCAPTCHA extra function buttons from tab index using jQuery</title>
		<link>http://my.galagzee.com/2009/09/30/disabling-recaptcha-function-keys-tabindex-jquery/</link>
		<comments>http://my.galagzee.com/2009/09/30/disabling-recaptcha-function-keys-tabindex-jquery/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 04:13:09 +0000</pubDate>
		<dc:creator>Ville Walveranta</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[captcha]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://my.galagzee.com/?p=378</guid>
		<description><![CDATA[Here&#8217;s an easy way to disable the &#8220;Get a new challenge&#8221;, &#8220;Audio Challenge&#8221;, and &#8220;Help&#8221; buttons from reCAPTCHA display block using jQuery. Simply add the following to $(document).ready(function() { &#8230; } on the page you have reCAPTCHA on: Now when &#8230; <a href="http://my.galagzee.com/2009/09/30/disabling-recaptcha-function-keys-tabindex-jquery/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s an easy way to disable the &#8220;Get a new challenge&#8221;, &#8220;Audio Challenge&#8221;, and &#8220;Help&#8221; buttons from <a href="http://recaptcha.net/" target="_blank">reCAPTCHA</a> display block using jQuery.</p>
<p>Simply add the following to <strong>$(document).ready(function() { &#8230; }</strong> on the page you have reCAPTCHA on:</p>
<pre class="brush: jscript; title: ; notranslate">
$(document).ready(function() {
   $(&quot;#recaptcha_reload_btn, #recaptcha_switch_audio_btn, #recaptcha_whatsthis_btn&quot;).attr(&quot;tabindex&quot;, -1);
});
</pre>
<p>Now when you tab out of the word entry field, the extra function buttons are skipped. This is a usability issue because if the extra buttons are left active in tab index, user can easily accidentally reload the challenge image when she thinks she is moving to the next item on the form (which is often the &#8220;submit&#8221; button), and then quickly hits Enter.</p>
]]></content:encoded>
			<wfw:commentRss>http://my.galagzee.com/2009/09/30/disabling-recaptcha-function-keys-tabindex-jquery/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

