I have a javascript image email button in the left column of my website. It's a picture of an envelope, obviously meaning if you want to mail us, click here. Here's the code:
<td>
<input type="image" src="http://www.ussvision.com/images/button-email.jpg"
id="btnEmail"
onclick="parent.location='mailto: @.com?subject=Check out USS Vision'"
value="Email" alt="Email this page" />
</td>
But when I click this, nothing happens. I don't want to use a 3rd party thing like addthis. But I WOULD like it to be simple as possible on clients -- and if it doesn't have to open their default email, that'd be great, since in reduces stress on their RAM.
Can anybody tell me what I'm doing wrong, and why the e-mail button won't even open up the default e-mail client? Any guidance would be appreciated!