HTML <area> nohref Attribute
Example
An image-map, with clickable areas, and a nohref attribute:
  
    <img src="planets.gif"
      width="145" height="126"
      alt="Planets"
 usemap="#planetmap">
      
      <map 
      name="planetmap">
       
      <area shape="rect" coords="0,0,82,126" nohref alt="Sun">
       
      <area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury">
       
      <area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus">
      </map>
  
Try it Yourself »
Definition and Usage
The <area> nohref attribute is not supported in HTML5.
The nohref attribute is a boolean attribute.
When present, it specifies that an area has no associated link.
Tip: The nohref attribute indicates that an <area> has no associated link. You could more easily do that by NOT including a href attribute.
Browser Support
| Attribute | |||||
|---|---|---|---|---|---|
| nohref | Not supported | Not supported | Not supported | Not supported | Not supported | 
Differences Between HTML and XHTML
In XHTML, attribute minimization is forbidden, and the nohref attribute must be defined as <area nohref="nohref" />.
Syntax
    <area nohref>
❮ HTML <area> tag

