<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	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/"
		>
<channel>
	<title>Comments on: Any-Element Linking Demo</title>
	<atom:link href="http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/feed/" rel="self" type="application/rss+xml" />
	<link>http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/</link>
	<description>Things that Eric A. Meyer, CSS expert, writes about on his personal Web site; it&#039;s largely Web standards and Web technology, but also various bits of culture, politics, personal observations, and other miscellaneous stuff</description>
	<lastBuildDate>Fri, 10 May 2013 11:50:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: The lovely picks from html5 at Notepack</title>
		<link>http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/#comment-534208</link>
		<dc:creator>The lovely picks from html5 at Notepack</dc:creator>
		<pubDate>Fri, 04 Feb 2011 13:54:30 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/?p=918#comment-534208</guid>
		<description><![CDATA[[...] linking To be honest, I preferred Eric Meyer’s revolution where any element could link, but an evolution is fine as well &#8211; it’s all about flexibility after all. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] linking To be honest, I preferred Eric Meyer’s revolution where any element could link, but an evolution is fine as well &#8211; it’s all about flexibility after all. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis File</title>
		<link>http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/#comment-494993</link>
		<dc:creator>Dennis File</dc:creator>
		<pubDate>Wed, 17 Mar 2010 18:47:03 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/?p=918#comment-494993</guid>
		<description><![CDATA[You could add &quot;visited&quot; functionality, but it&#039;d be confusing. You would use javascript to dynamically create an &lt;a&gt; tag with the href of the to-be-created imitation hyperlink. Then use CSS to position:absolute the A tag off the screen. Then use something along the lines of

&lt;code&gt;#detector:visited { height:100px; }&lt;/code&gt;

where #detector is the hidden A element. Then use JS to get that A element&#039;s offsetHeight, and find if the link has been visited. If so, change the style of the imitated hyperlink.]]></description>
		<content:encoded><![CDATA[<p>You could add &#8220;visited&#8221; functionality, but it&#8217;d be confusing. You would use javascript to dynamically create an &lt;a&gt; tag with the href of the to-be-created imitation hyperlink. Then use CSS to position:absolute the A tag off the screen. Then use something along the lines of</p>
<p><code>#detector:visited { height:100px; }</code></p>
<p>where #detector is the hidden A element. Then use JS to get that A element&#8217;s offsetHeight, and find if the link has been visited. If so, change the style of the imitated hyperlink.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Clickable &#60;li&#62; &#171; I Love Usability</title>
		<link>http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/#comment-479332</link>
		<dc:creator>Clickable &#60;li&#62; &#171; I Love Usability</dc:creator>
		<pubDate>Tue, 13 Oct 2009 14:26:52 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/?p=918#comment-479332</guid>
		<description><![CDATA[[...] with this if I want to make the entire list item a link, but there is some hope for the future. Eric Meyer proposed any element linking in which you could give any element an href property. Wouldn&#8217;t it be nice to be able to do [...]]]></description>
		<content:encoded><![CDATA[<p>[...] with this if I want to make the entire list item a link, but there is some hope for the future. Eric Meyer proposed any element linking in which you could give any element an href property. Wouldn&#8217;t it be nice to be able to do [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kit Grose</title>
		<link>http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/#comment-415821</link>
		<dc:creator>Kit Grose</dc:creator>
		<pubDate>Fri, 17 Oct 2008 08:05:14 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/?p=918#comment-415821</guid>
		<description><![CDATA[I am a huge supporter of this functionality. I don&#039;t see any logical reason to limit the functionality to table cells only (but I don&#039;t think *every* element should be href-able; HTML and BODY are the obvious examples).

The biggest issue I can see with allowing links to wrap any elements is Hixie&#039;s oft-stated goal to make sure the HTML5 specification for error behaviour is well-defined, which could be difficult for structures like:
&lt;code&gt;
&lt;a href=&quot;#example&quot;&gt;&lt;tr&gt;&lt;td&gt;Content&lt;/td&gt;&lt;td&gt;Content&lt;/td&gt;&lt;/a&gt;&lt;td&gt;Content&lt;/td&gt;&lt;/tr&gt;
&lt;/code&gt;

where the author has no obvious implied intent (wanting to link the entire row? the two first cells?).]]></description>
		<content:encoded><![CDATA[<p>I am a huge supporter of this functionality. I don&#8217;t see any logical reason to limit the functionality to table cells only (but I don&#8217;t think *every* element should be href-able; HTML and BODY are the obvious examples).</p>
<p>The biggest issue I can see with allowing links to wrap any elements is Hixie&#8217;s oft-stated goal to make sure the HTML5 specification for error behaviour is well-defined, which could be difficult for structures like:<br />
<code><br />
&lt;a href="#example"&gt;&lt;tr&gt;&lt;td&gt;Content&lt;/td&gt;&lt;td&gt;Content&lt;/td&gt;&lt;/a&gt;&lt;td&gt;Content&lt;/td&gt;&lt;/tr&gt;<br />
</code></p>
<p>where the author has no obvious implied intent (wanting to link the entire row? the two first cells?).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bruce Lawson&#8217;s personal site&#160; : Any-Element Linking in HTML 5</title>
		<link>http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/#comment-409643</link>
		<dc:creator>Bruce Lawson&#8217;s personal site&#160; : Any-Element Linking in HTML 5</dc:creator>
		<pubDate>Thu, 18 Sep 2008 08:32:57 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/?p=918#comment-409643</guid>
		<description><![CDATA[[...] 5 should allow any element should be able to turn into a link by taking an href attribute - see his Any-Element Linking Demo. I suggested that, as a stop gap, HTML 5 should legalise the fact that all the big five browsers [...]]]></description>
		<content:encoded><![CDATA[<p>[...] 5 should allow any element should be able to turn into a link by taking an href attribute &#8211; see his Any-Element Linking Demo. I suggested that, as a stop gap, HTML 5 should legalise the fact that all the big five browsers [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michaël Guitton</title>
		<link>http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/#comment-399769</link>
		<dc:creator>Michaël Guitton</dc:creator>
		<pubDate>Tue, 12 Aug 2008 16:36:13 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/?p=918#comment-399769</guid>
		<description><![CDATA[&lt;blockquote&gt;And hey, if anyone wants to contribute improvements to the JS [...]&lt;/blockquote&gt;

IMHO you should drop the onload handler on body and attach the script just before the body closing tag:
 
(function() {

    function click() {
        window.location = this.getAttribute(&#039;href&#039;);
    }
    
    function mouseover(e) {
        window.status = this.getAttribute(&#039;href&#039;);
        (e &#124;&#124; window.event).cancelBubble = true;
    }
    
    function mouseout() {
        window.status = &#039;&#039;;
    }
    
    var coll = document.getElementsByTagName(&#039;body&#039;)[0].getElementsByTagName(&#039;*&#039;);
    for (var i = 0, all = coll.length; i &lt; all; i++) {
        var el = coll[i];
        if (el.hasAttribute(&#039;href&#039;)) {
            el.onclick     = click;
            el.onmouseover = mouseover;
            el.onmouseout  = mouseout;
        }
    }
})();]]></description>
		<content:encoded><![CDATA[<blockquote><p>And hey, if anyone wants to contribute improvements to the JS [...]</p></blockquote>
<p>IMHO you should drop the onload handler on body and attach the script just before the body closing tag:</p>
<p>(function() {</p>
<p>    function click() {<br />
        window.location = this.getAttribute(&#8216;href&#8217;);<br />
    }</p>
<p>    function mouseover(e) {<br />
        window.status = this.getAttribute(&#8216;href&#8217;);<br />
        (e || window.event).cancelBubble = true;<br />
    }</p>
<p>    function mouseout() {<br />
        window.status = &#8221;;<br />
    }</p>
<p>    var coll = document.getElementsByTagName(&#8216;body&#8217;)[0].getElementsByTagName(&#8216;*&#8217;);<br />
    for (var i = 0, all = coll.length; i &lt; all; i++) {<br />
        var el = coll[i];<br />
        if (el.hasAttribute(&#8216;href&#8217;)) {<br />
            el.onclick     = click;<br />
            el.onmouseover = mouseover;<br />
            el.onmouseout  = mouseout;<br />
        }<br />
    }<br />
})();</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: koew</title>
		<link>http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/#comment-399598</link>
		<dc:creator>koew</dc:creator>
		<pubDate>Mon, 11 Aug 2008 13:56:24 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/?p=918#comment-399598</guid>
		<description><![CDATA[Ian: By using ID&#039;s instead of anchor names, you could remove the &lt;a&gt;-tag completely - if the any-element-linking would become standard.

I can already imagine the nice table designs with easy-to-eye colourization, and how it would (hopefully) help users finding their data.]]></description>
		<content:encoded><![CDATA[<p>Ian: By using ID&#8217;s instead of anchor names, you could remove the &lt;a&gt;-tag completely &#8211; if the any-element-linking would become standard.</p>
<p>I can already imagine the nice table designs with easy-to-eye colourization, and how it would (hopefully) help users finding their data.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/#comment-399534</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Mon, 11 Aug 2008 02:11:36 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/?p=918#comment-399534</guid>
		<description><![CDATA[I read this article a few weeks ago.  It makes perfect sense to me.  
Then, after pondering, I pondered...

Does this not in the future lead to a (mostly) redundant &lt;a&gt; tag? 

If every tag supports an href attribute, we won&#039;t need an extra &lt;a&gt; tag to make links.
-  &lt;span&gt; can be used for in-para links
-  css can target it via the CSS3 attribute selector

The only remaining use for the &lt;a&gt; would be to define a bookmark/anchor.

It seems too simple.  Have I missed something?]]></description>
		<content:encoded><![CDATA[<p>I read this article a few weeks ago.  It makes perfect sense to me.<br />
Then, after pondering, I pondered&#8230;</p>
<p>Does this not in the future lead to a (mostly) redundant &lt;a&gt; tag? </p>
<p>If every tag supports an href attribute, we won&#8217;t need an extra &lt;a&gt; tag to make links.<br />
-  &lt;span&gt; can be used for in-para links<br />
-  css can target it via the CSS3 attribute selector</p>
<p>The only remaining use for the &lt;a&gt; would be to define a bookmark/anchor.</p>
<p>It seems too simple.  Have I missed something?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bruce</title>
		<link>http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/#comment-399115</link>
		<dc:creator>bruce</dc:creator>
		<pubDate>Fri, 08 Aug 2008 08:18:52 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/?p=918#comment-399115</guid>
		<description><![CDATA[You&#039;re welcome! (That&#039;s what Opera pay me for ...)

I&#039;ve re-sent email-- let me know if you don&#039;t get it.]]></description>
		<content:encoded><![CDATA[<p>You&#8217;re welcome! (That&#8217;s what Opera pay me for &#8230;)</p>
<p>I&#8217;ve re-sent email&#8211; let me know if you don&#8217;t get it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Meyer</title>
		<link>http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/#comment-398994</link>
		<dc:creator>Eric Meyer</dc:creator>
		<pubDate>Thu, 07 Aug 2008 20:59:21 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/?p=918#comment-398994</guid>
		<description><![CDATA[I&#039;ve been thinking much the same since seeing Bruce&#039;s demo, &lt;a href=&quot;http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/#comment-398986&quot; rel=&quot;nofollow&quot;&gt;Wolfgang&lt;/a&gt;-- push for both, with (improved) wrapping support in the near term and attribute expansion on a longer timeline.

&lt;a href=&quot;http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/#comment-398941&quot; rel=&quot;nofollow&quot;&gt;Bruce&lt;/a&gt;, thank you many times over for creating that demo and dropping me a pointer here.  I don&#039;t think I did get your mail-- can you try sending it again, please?]]></description>
		<content:encoded><![CDATA[<p>I&#8217;ve been thinking much the same since seeing Bruce&#8217;s demo, <a href="http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/#comment-398986" rel="nofollow">Wolfgang</a>&#8211; push for both, with (improved) wrapping support in the near term and attribute expansion on a longer timeline.</p>
<p><a href="http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/#comment-398941" rel="nofollow">Bruce</a>, thank you many times over for creating that demo and dropping me a pointer here.  I don&#8217;t think I did get your mail&#8211; can you try sending it again, please?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wolfgang Löer</title>
		<link>http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/#comment-398986</link>
		<dc:creator>Wolfgang Löer</dc:creator>
		<pubDate>Thu, 07 Aug 2008 20:05:27 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/?p=918#comment-398986</guid>
		<description><![CDATA[&lt;a href=&quot;http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/#comment-398941&quot; rel=&quot;nofollow&quot;&gt;bruce:&lt;/a&gt; actually i use &lt;a&gt; around block-elements simliarly to your (first) test &lt;a href=&quot;http://analythis.com/arbeitsproben/uebersicht-design-arbeitsproben.html&quot; rel=&quot;nofollow&quot;&gt;on my own site&lt;/a&gt; (because i wanted &lt;h2&gt; in it and the full box linked and i was lazy) and noticed only rarely a small rendering-problem in ff. (it then looks like there are individual links around everything on only one of the boxes. seems to happen usually when the page is loaded for the first time, so you might see it. will vanish on page reload.)

i guess browsers make it work like the lots of other bad html-code because they try to honor the developer-intent if specifications are broken. 

this is why i believe the option &lt;strong&gt;&quot;change &lt;a&gt;&quot; is the most sensible&lt;/strong&gt; to include in html5
- it is quite backwards compatible
- is usable immediately (with a little caution)
- doesn&#039;t make understanding/writing html any harder
- legalizes code which most people don&#039;t even know to be invalid
- solves many or all of the otherwise &quot;impossible&quot; cases (depending on whether its allowed only around usual block-elements or special cases like &lt;tr&gt; or &lt;td&gt; as well)
- has no real argument against it (does it worsen anything?)
- seems easy to implement

the option &lt;strong&gt;&quot;href everywhere&quot; is clearly and by far the one best solution&lt;/strong&gt; (from the code, web-user and developer-standpoint at least), but sadly it would take years to become usable.

-&gt; hey why not simply integrate both – &lt;a&gt; for short term, href everywhere for long term? :)]]></description>
		<content:encoded><![CDATA[<p><a href="http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/#comment-398941" rel="nofollow">bruce:</a> actually i use &lt;a&gt; around block-elements simliarly to your (first) test <a href="http://analythis.com/arbeitsproben/uebersicht-design-arbeitsproben.html" rel="nofollow">on my own site</a> (because i wanted &lt;h2&gt; in it and the full box linked and i was lazy) and noticed only rarely a small rendering-problem in ff. (it then looks like there are individual links around everything on only one of the boxes. seems to happen usually when the page is loaded for the first time, so you might see it. will vanish on page reload.)</p>
<p>i guess browsers make it work like the lots of other bad html-code because they try to honor the developer-intent if specifications are broken. </p>
<p>this is why i believe the option <strong>&#8220;change &lt;a&gt;&#8221; is the most sensible</strong> to include in html5<br />
- it is quite backwards compatible<br />
- is usable immediately (with a little caution)<br />
- doesn&#8217;t make understanding/writing html any harder<br />
- legalizes code which most people don&#8217;t even know to be invalid<br />
- solves many or all of the otherwise &#8220;impossible&#8221; cases (depending on whether its allowed only around usual block-elements or special cases like &lt;tr&gt; or &lt;td&gt; as well)<br />
- has no real argument against it (does it worsen anything?)<br />
- seems easy to implement</p>
<p>the option <strong>&#8220;href everywhere&#8221; is clearly and by far the one best solution</strong> (from the code, web-user and developer-standpoint at least), but sadly it would take years to become usable.</p>
<p>-&gt; hey why not simply integrate both – &lt;a&gt; for short term, href everywhere for long term? :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bruce</title>
		<link>http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/#comment-398941</link>
		<dc:creator>bruce</dc:creator>
		<pubDate>Thu, 07 Aug 2008 16:53:20 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/?p=918#comment-398941</guid>
		<description><![CDATA[Here&#039;s a test page I made to show some friends. Green borders are divs.

http://www.brucelawson.co.uk/tests/anchors-wrapping-blocks.htm

In all the big 4 browsers, the first test (of a news page &quot;teaser&quot;) works. The second test fails as the inner anchor closes the nest.

(Did you get an email from me a couple of weeks ago about this? My mail server has been wobblier than a toddler&#039;s tooth, so it&#039;s possible it never got to you.)]]></description>
		<content:encoded><![CDATA[<p>Here&#8217;s a test page I made to show some friends. Green borders are divs.</p>
<p><a href="http://www.brucelawson.co.uk/tests/anchors-wrapping-blocks.htm" rel="nofollow">http://www.brucelawson.co.uk/tests/anchors-wrapping-blocks.htm</a></p>
<p>In all the big 4 browsers, the first test (of a news page &#8220;teaser&#8221;) works. The second test fails as the inner anchor closes the nest.</p>
<p>(Did you get an email from me a couple of weeks ago about this? My mail server has been wobblier than a toddler&#8217;s tooth, so it&#8217;s possible it never got to you.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Meyer</title>
		<link>http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/#comment-398622</link>
		<dc:creator>Eric Meyer</dc:creator>
		<pubDate>Wed, 06 Aug 2008 14:13:03 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/?p=918#comment-398622</guid>
		<description><![CDATA[That&#039;s one of the possible solutions mentioned in the &lt;a href=&quot;http://meyerweb.com/eric/html-xhtml/html5-linking.html&quot; rel=&quot;nofollow&quot;&gt;proposal document&lt;/a&gt; (&quot;Change &lt;code&gt;a&lt;/code&gt; so that it can wrap around any arbitrary collection of elements&quot;), &lt;a href=&quot;http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/#comment-398568&quot; rel=&quot;nofollow&quot;&gt;Bruce&lt;/a&gt;.   I should add a link from the demo to the proposal, shouldn&#039;t I?

Very, very interesting that all browsers allow wrapping &lt;code&gt;a&lt;/code&gt; around block elements, since they should terminate the inline element as soon as the first block opening tag is reached---and I know that Gecko used to do this, even if it doesn&#039;t now.  It used to be required by (X)HTML parsing rules.  Did that change when I wasn&#039;t looking?]]></description>
		<content:encoded><![CDATA[<p>That&#8217;s one of the possible solutions mentioned in the <a href="http://meyerweb.com/eric/html-xhtml/html5-linking.html" rel="nofollow">proposal document</a> (&#8220;Change <code>a</code> so that it can wrap around any arbitrary collection of elements&#8221;), <a href="http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/#comment-398568" rel="nofollow">Bruce</a>.   I should add a link from the demo to the proposal, shouldn&#8217;t I?</p>
<p>Very, very interesting that all browsers allow wrapping <code>a</code> around block elements, since they should terminate the inline element as soon as the first block opening tag is reached&#8212;and I know that Gecko used to do this, even if it doesn&#8217;t now.  It used to be required by (X)HTML parsing rules.  Did that change when I wasn&#8217;t looking?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bruce</title>
		<link>http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/#comment-398568</link>
		<dc:creator>bruce</dc:creator>
		<pubDate>Wed, 06 Aug 2008 11:14:45 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/?p=918#comment-398568</guid>
		<description><![CDATA[There is another alternative: change the spec to allow the &lt;a&gt; element to surround block level elements. All the browsers allow this &lt;a&gt;&lt;h1&gt;&lt;/h1&gt;&lt;img /&gt;&lt;p&gt;&lt;/p&gt;&lt;/a&gt; (firefox gets a bit wierd with underlining).

They fall down if there&#039;s nested &lt;a&gt;s, as each browser closes the outer &lt;a&gt; with the inner &lt;a&gt; closing, so this

&lt;a href=&quot;#&quot;&gt;&lt;p&gt;Mary had a &lt;a href=&quot;http://www.google.com\&quot;&gt;little&lt;/a&gt; lamb&lt;/p&gt;&lt;/a&gt;


has no linkage on the word &quot;lamb&quot; in any browser. 

It&#039;s not as succinct as href anywhere, I agree.]]></description>
		<content:encoded><![CDATA[<p>There is another alternative: change the spec to allow the &lt;a&gt; element to surround block level elements. All the browsers allow this &lt;a&gt;&lt;h1&gt;&lt;/h1&gt;&lt;img /&gt;&lt;p&gt;&lt;/p&gt;&lt;/a&gt; (firefox gets a bit wierd with underlining).</p>
<p>They fall down if there&#8217;s nested &lt;a&gt;s, as each browser closes the outer &lt;a&gt; with the inner &lt;a&gt; closing, so this</p>
<p>&lt;a href=&quot;#&quot;&gt;&lt;p&gt;Mary had a &lt;a href=&quot;<a href="http://www.google.com" rel="nofollow">http://www.google.com</a>\&quot;&gt;little&lt;/a&gt; lamb&lt;/p&gt;&lt;/a&gt;</p>
<p>has no linkage on the word &quot;lamb&quot; in any browser. </p>
<p>It&#8217;s not as succinct as href anywhere, I agree.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Meyer</title>
		<link>http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/#comment-396637</link>
		<dc:creator>Eric Meyer</dc:creator>
		<pubDate>Thu, 31 Jul 2008 09:59:37 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/?p=918#comment-396637</guid>
		<description><![CDATA[&lt;a href=&quot;http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/#comment-396361&quot; rel=&quot;nofollow&quot;&gt;Mike&lt;/a&gt;: because if I don&#039;t go to the effort, then there&#039;s no chance of it happening.  At least if I try, there&#039;s a non-zero chance of success, however small that chance may be.]]></description>
		<content:encoded><![CDATA[<p><a href="http://meyerweb.com/eric/thoughts/2008/07/23/any-element-linking-demo/#comment-396361" rel="nofollow">Mike</a>: because if I don&#8217;t go to the effort, then there&#8217;s no chance of it happening.  At least if I try, there&#8217;s a non-zero chance of success, however small that chance may be.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->