Link to home
Start Free TrialLog in
Avatar of Colin Brazier
Colin BrazierFlag for United Kingdom of Great Britain and Northern Ireland

asked on

javascript email link with image

Hi experts,

I have this code that works fine
<p>
                <script language=javascript>
                  <!--
                  var contact = "Email us!"
                  var email = "mailbox"
                  var emailHost = "fobgfc.org"
                  document.write("<a href=" + "mail" + "to:" + email + "@" + emailHost+ ">" + contact + "</a>")
                  //-->
                </script>
</p>

Open in new window


but I wanted to spice it up with an image, rather than just "Email us!" text...how would I do that please?

Cheers,

  Col
ASKER CERTIFIED SOLUTION
Avatar of leakim971
leakim971
Flag of Guadeloupe image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Colin Brazier

ASKER

Perfect, thanks.