T O P I C R E V I E W |
Martin1 |
Posted - 22 Nov 2005 : 15:01:45 How do I add a mailto action to an image in Dynamic HTML Editor. If you look at this page you see at the bottom an enveloppe which when moused over shows an enveloppe upside down. How do I add a mailto action to this and to which enveloppe the 'normal' one or the upside down one?
http://www.dutchdelicacy.com/
Martin |
2 L A T E S T R E P L I E S (Newest First) |
Martin1 |
Posted - 24 Nov 2005 : 15:34:16 Hello Davide!
Thanks for the explanation I will try it as soon as possible but assume it will work allright:-)
Sorry for the delay in responding to your answer but I have th flue and not feeling very well[2 }:HH].
Martin |
s.dav |
Posted - 23 Nov 2005 : 09:12:37 quote: Originally posted by Martin1
How do I add a mailto action to an image in Dynamic HTML Editor. If you look at this page you see at the bottom an enveloppe which when moused over shows an enveloppe upside down. How do I add a mailto action to this and to which enveloppe the 'normal' one or the upside down one?
http://www.dutchdelicacy.com/
Martin
Hello Martin,
If you want to create an email link do the follows: 1) create an event 2) choose OnClick, JavaCall 3) write a string like this:
document.location='mai'+'lto:'+'we'+'bsup@h'+'exago'+'ra.'+'com';
This is the code I've used for the page contactus.asp in my site
If you want to create a link to an email of type pippo[A T]pluto.com simply divide the email into pieces (this for avoiding SPAM ;-)) like this:
document.location='mai'+'lto:'+'pi'+'ppo@p'+'luto.'+'com';
|