Forum Moderators: open
I have recently started using DW4 (from fp which i v much disliked). I was wondering if there was a way to create a email for that just sent the reply to an address instead of putting a link which could get spammed.
Is there just a simple submit button variation or do i need something to process the information
Thanx
eggy_ricardo
<a class="contact1" onmouseover="setTheContact();" onfocus="setTheContact();" href="contact.htm">Contact Me</a>
Then within your javascript you would get the element based on it's tag name (getElementsByTagName) and change the object's href (obj.href = 'mailto:' + name + '@' + myDomainName) by piecing together variables. You can get really fancy by using regular expressions if you want.