I'm hiding the email address on a website with this javascript which
works fine:
---------------------------------
<p>Send your comments and questions to our
<script language=javasc ript>
<!--
var contact = "Newsletter Editor"
var email = "news"
var emailHost = "netmechanic.co m"
document.write( "<a href=" + "mail" + "to:" + email + "@" + emailHost+
">" + contact + "</a>" + ".")
//-->
</script>
</p>
---------------------------------
How can I make an image instead of the text as a link to start this
script?
Thanks in advance
works fine:
---------------------------------
<p>Send your comments and questions to our
<script language=javasc ript>
<!--
var contact = "Newsletter Editor"
var email = "news"
var emailHost = "netmechanic.co m"
document.write( "<a href=" + "mail" + "to:" + email + "@" + emailHost+
">" + contact + "</a>" + ".")
//-->
</script>
</p>
---------------------------------
How can I make an image instead of the text as a link to start this
script?
Thanks in advance
Comment