<?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>Accessibility Tips &#187; configuration</title>
	<atom:link href="http://accessibilitytips.com/tag/configuration/feed/" rel="self" type="application/rss+xml" />
	<link>http://accessibilitytips.com</link>
	<description>A collection of tips, guidance and practical suggestions in developing accessible websites</description>
	<lastBuildDate>Sat, 02 May 2009 05:07:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Avoiding redundant title attributes</title>
		<link>http://accessibilitytips.com/2008/04/14/avoiding-redundant-title-attributes/</link>
		<comments>http://accessibilitytips.com/2008/04/14/avoiding-redundant-title-attributes/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 04:01:04 +0000</pubDate>
		<dc:creator>Isofarro</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[duplicate]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[redundant]]></category>
		<category><![CDATA[screen magnifiers]]></category>
		<category><![CDATA[screenreaders]]></category>
		<category><![CDATA[title]]></category>
		<category><![CDATA[understanding]]></category>

		<guid isPermaLink="false">http://www.wp-dev.isolutia.com/?p=20</guid>
		<description><![CDATA[The title attribute is one of the overlooked attributes in the HTML collection. It&#8217;s most often used to mark up abbreviations with their expanded forms. Sometimes it&#8217;s used to rout around Internet Explorer&#8217;s tooltip behaviour of image alt attributes. The attribute itself is meant to supply optional supplementary information. The most beneficial example is in [...]]]></description>
			<content:encoded><![CDATA[<p>The <code>title</code> attribute is one of the overlooked attributes in the <abbr title="Hypertext Markup Language">HTML</abbr> collection. It&#8217;s most often used to mark up abbreviations with their expanded forms. Sometimes it&#8217;s used to rout around Internet Explorer&#8217;s tooltip behaviour of image <code>alt</code> attributes.</p>
<p>The attribute itself is meant to supply optional supplementary information. The most beneficial example is in conjunction with the <code>abbr</code> element, providing the knowing user with an expansion of an abbreviation. A second practical example is using it with forms to provide additional relevant information. (We also looked at <a href="http://www.accessibilitytips.com/2008/03/25/using-titles-on-form-fields/">using titles with form fields</a>.)</p>
<p>But there are many examples of a title attribute being used to provide the same information that&#8217;s already available and accessible. The most common example is links, especially in navigation you see the following piece of markup:</p>
<pre title="An example of a redundant title.">
<code>
&lt;a href="/sitemap/" title="Visit our sitemap"&gt;Sitemap&lt;/a&gt;
</code>
</pre>
<p>Here the title attribute is just a plain duplication of the link text. Sure, it may have two extra words of <q>Visit our</q> which don&#8217;t appear elsewhere, but this explains what a link does, and is just as redundant and irrelevant to site visitors. Most of them would need to have understood what a hypertext link is and what it does before even arriving at your site. Its just not necessary.</p>
<p>The extra text is a variant of the <a href="http://www.w3.org/QA/Tips/noClickHere"><q>click here</q> problem</a>, it explains about how to activate a text link rather than succinctly describing the destination.</p>
<p>Some users have their screenreaders configured to read out both the link text and the title attribute. In this case, the above link would read out &#8220;Sitemap visit our sitemap&#8221;, and either prefix that with the word &#8220;Link&#8221;, or switch to a different voice to indicate the presence of a link. The duplication slows down the reading of the page, and is <a href="http://www.paciellogroup.com/blog/?p=37#comment-944">an unnecessary hiccup</a>.</p>
<p>There is very little benefit to the title attribute in this code example. It is better, accessibility wise, to just drop the title attribute altogether in this instance.</p>
<h2>Creating barriers for screen magnifiers</h2>
<p>Screen magnifiers have the tendancy to make all title attributes appear when they have a titled element within the view of the magnifier. Any title, be it on a div, or a header, or a paragraph or a link, will appear in a tooltip like fashion. A significant use of titles may distract a screen magnifier user, even prevent them from seeing a particular piece of content because it has been obstructed by a tooltip.</p>
<p>There&#8217;s just no positive accessibility benefit to using a <code>title</code> attribute to duplicate existing content. The <code>title</code> attribute. when it offers no extra value, hinders more than it helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://accessibilitytips.com/2008/04/14/avoiding-redundant-title-attributes/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

