I want to open a new outlook mail template with the \'To address\' whenever a user clicks an image. I have return my code in a html page(linked with the image), whenever it
I don't know if it helps, but using jQuery, to hide an email address, I did :
$(function() {
// planque l'adresse mail
var mailSplitted
= ['mai', 'to:mye', 'mail@', 'addre', 'ss.fr'];
var link = mailSplitted.join('');
link = '';
$('mytag').wrap(link);
});
I hope it helps.