Search code examples
htmlmailto

Why is "mailto:" not working in IE9 Windows 7


here is my code,

<a href="mailto:[email protected]"><span id="text1a">
                        <label>
                            Email Jasen</label></span></a>
                    <br />

here is the css:

a  { text-decoration: none;  }

a:visited { color: blue; }
a:hover   { color: red; }

#text1a {

    color: blue;

}

it works fine in Google Chrome, but not in IE9 windows 7. is there something special that I need to do?


Solution

  • I just tried on IE9 and IE10, and the issue is the label,if you remove it, it will work. check the FIDDLE