<?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>active border &#8211; Blogvaria</title>
	<atom:link href="https://blog.evaria.com/key/active-border/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.evaria.com</link>
	<description>The personal pages</description>
	<lastBuildDate>Mon, 03 May 2010 17:26:56 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>
<site xmlns="com-wordpress:feed-additions:1">1077093</site>	<item>
		<title>How to remove the active/focus borders</title>
		<link>https://blog.evaria.com/2010/how-to-remove-the-activefocus-borders/</link>
		
		<dc:creator><![CDATA[Thomas]]></dc:creator>
		<pubDate>Mon, 03 May 2010 17:26:56 +0000</pubDate>
				<category><![CDATA[CSS & Design]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[active border]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[focus]]></category>
		<category><![CDATA[html]]></category>
		<guid isPermaLink="false">http://blog.evaria.com/?p=1238</guid>

					<description><![CDATA[I&#8217;m sure you have noticed that when you click a hyper link, and especially a linked image, a dotted border appears around it. Have a look at CSSplay for more &#8230; ]]></description>
										<content:encoded><![CDATA[<p>I&#8217;m sure you have noticed that when you click a hyper link, and especially a linked image, a dotted border appears around it. <a href="http://www.cssplay.co.uk/menu/nodots.html" target="_blank">Have a look at CSSplay</a> for more examples and proper CSS code fix related to this. </p>
<h4>A few quick solutions</h4>
<p>For those of us using the jQuery Java framework the &#8220;solution&#8221; is incredibly simple. Just call the following function in your header and all dotted borders are gone:</p>
<pre>jQuery("a").focus(function(){this.blur()});</pre>
<p>Using CSS it&#8217;s almost as simple (at least for all browsers except IE):</p>
<pre>a:focus {outline-style: none;} </pre>
<p>Using basic JavaScript the following should do the trick:</p>
<pre>for(var i=0;elm=document.links[i];i++)
{
elm.onfocus=function(){elm.blur();};
}</pre>
<p>Some would probably say that this shouldn&#8217;t be done because the active/focus dotted border is there to show visitors who are using tabbed link selection which link is selected. But when we are using CSS we can style our own active/focus state and in this case the dotted border is not so necessary. I&#8217;ll appreciate your take on this as I&#8217;ve debated this &#8220;issue&#8221; with some of my clients on several occasions.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1238</post-id>	</item>
	</channel>
</rss>
