[thelist] Accessible Links in an imagemap
pandion
thelist at lists.evolt.org
Fri Jul 19 21:44:01 2002
At 17:06 2002.07.19, Ken Kogler wrote:
>onClick is not supported in the <area> tag, so sayeth the w3c
>(http://www.w3.org/TR/html401/struct/objects.html#edef-AREA). My testing
>supports that, too.
But I think it is supported. Doesn't the "%events" mean common events are
allowed? This validates both transitional and Strict. Am I missing something?
<div>
<map name="mymap">
<area href="http://www.google.html"
onclick="window.open('http://www.google.com');
return false;"
alt="yadda" coords="0,0,200,200">
</map>
<img src="map.gif" alt="yadda" usemap="#mymap">
</div>
pandy