<?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>gHacks Technology News &#124; Latest Tech News, Software And Tutorials &#187; auto focus</title> <atom:link href="http://www.ghacks.net/tag/auto-focus/feed/" rel="self" type="application/rss+xml" /><link>http://www.ghacks.net</link> <description>A technology news blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description> <lastBuildDate>Fri, 10 Feb 2012 20:51:26 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/> <item><title>Disable Text Field Auto Focus</title><link>http://www.ghacks.net/2009/04/14/disable-text-field-auto-focus/</link> <comments>http://www.ghacks.net/2009/04/14/disable-text-field-auto-focus/#comments</comments> <pubDate>Tue, 14 Apr 2009 06:07:24 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Browsing]]></category> <category><![CDATA[Firefox]]></category> <category><![CDATA[auto focus]]></category> <category><![CDATA[disable auto focus]]></category> <category><![CDATA[greasemonkey]]></category> <category><![CDATA[userscript]]></category> <category><![CDATA[web browser]]></category> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/14/disable-text-field-auto-focus/</guid> <description><![CDATA[We would like to show how to disable the auto focus on text fields of selected websites to complete the series of posts that deal with auto focusing on text fields once the website opens in the web browser. If you open the Google Search homepage by default you notice that the cursor will automatically [...]]]></description> <content:encoded><![CDATA[<p><img
src="http://www.ghacks.net/wp-content/uploads/2009/04/greasemonkey.gif" alt="greasemonkey" title="greasemonkey" width="128" height="128" class="alignleft size-full wp-image-11973" />We would like to show how to disable the auto focus on text fields of selected websites to complete the series of posts that deal with auto focusing on text fields once the website opens in the web browser. If you open the Google Search homepage by default you notice that the cursor will automatically be placed in the search form on that page. Many users like this feature as it speeds up their search. Not by much but it adds up over the days.</p><p>Some users on the other hand prefer that this is not happening automatically. This is probably not so much a problem of Google Search but on pages with several text fields that auto focus on the first once the page has loaded. Users who start typing in data in the first text field &#8211; and probably jump to the second to continue &#8211; will notice that the cursor will be placed in the first text field once the page has finished loading no matter where it is currently located on the page. Not that nice if you started typing in a long secure password only to realize that you have to type it in again.</p><p><span
id="more-11981"></span>Focus Killer is another Greasemonkey script that can disable auto focus on text fields. The default setting of the script is to enable this option for all websites. This does cause problems with some websites though and it is recommended to specify the websites it should work on. This can be done easily by right-clicking the Greasemonkey icon in the web browser, selecting Manage User Scripts from the menu, removing the * entry in the Included Pages table and adding new websites by clicking on the Add button next to it.</p><p>Check out the other article in the series if you want the reverse effect. (read: <a
href="http://www.ghacks.net/2009/04/13/automatically-jump-to-first-text-field/">Automatically jump to first text field</a></p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2009/04/14/disable-text-field-auto-focus/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>Automatically Jump To First Text Field</title><link>http://www.ghacks.net/2009/04/13/automatically-jump-to-first-text-field/</link> <comments>http://www.ghacks.net/2009/04/13/automatically-jump-to-first-text-field/#comments</comments> <pubDate>Mon, 13 Apr 2009 20:11:33 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Browsing]]></category> <category><![CDATA[Firefox]]></category> <category><![CDATA[auto focus]]></category> <category><![CDATA[form]]></category> <category><![CDATA[google chrome]]></category> <category><![CDATA[greasemonkey]]></category> <category><![CDATA[Opera]]></category> <category><![CDATA[text field]]></category> <category><![CDATA[userscripts]]></category> <category><![CDATA[web browser]]></category> <guid
isPermaLink="false">http://www.ghacks.net/2009/04/13/automatically-jump-to-first-text-field/</guid> <description><![CDATA[We mentioned a setting for the Firefox web browser earlier today that allowed the usage of the tab key to jump to the first text field on a website.This is handy on websites with no auto focus on the first text field. There was no apparent way, either by installing a Firefox add-on or userscript, [...]]]></description> <content:encoded><![CDATA[<p><img
src="http://www.ghacks.net/wp-content/uploads/2009/04/greasemonkey.gif" alt="greasemonkey" title="greasemonkey" width="128" height="128" class="alignleft size-full wp-image-11973" />We mentioned a setting for the Firefox web browser earlier today that allowed the usage of the tab key to <a
href="http://www.ghacks.net/2009/04/13/quick-jump-to-text-fields-in-firefox/">jump to the first text field</a> on a website.This is handy on websites with no auto focus on the first text field. There was no apparent way, either by installing a Firefox add-on or userscript, to automate that process further by automatically focusing on the first text field on specific sites.</p><p>Research for disabling that feature on websites with enabled auto focus led to a Greasemonkey user script that would do exactly what we have been looking for earlier today: A script that would automatically jump to the first text field on selected websites without user interaction. A Greasemonkey script for that purpose is great because of the following reasons:</p><ul><li>It is not limited to the Firefox web browser but can also be added to other web browser supporting Greasemonkey or those scripts.</li><li>It can be enabled on specific domains (or all).</li></ul><p><span
id="more-11976"></span>A user wanting to install the script needs to download <a
href="http://www.greasespot.net/">Greasemonkey</a> or a compatible program. Once Greasemonkey or its equivalent are installed the <a
href="http://userscripts.org/scripts/show/46455">Focus First Textbox</a> script can be added to the web browser. The last step involves adding domain names or strings where this user script should be active on.</p><p>A right-click on the Greasemonkey icon in the status bar of Firefox and the selection of Manage User Scripts will open the configuration. Select the Focus First Textbox script from the left sidebar. A click on the Add button next to included pages will open a basic form that can be filled with a domain name.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2009/04/focus_first_textbox-500x238.jpg" alt="focus first textbox" title="focus first textbox" width="500" height="238" class="alignnone size-medium wp-image-11975" /></p><p>The script becomes active on newly added pages after reloading them.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2009/04/13/automatically-jump-to-first-text-field/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> </channel> </rss>
