﻿
//////// Jquery sollution:

/// adds the email link in every element with the class "mailsPlace"
/// !!!!!!!!!! mailto.js must be called in the page after the jquery (jquery.js) is called

 $(document).ready(function(){
    $(".mailsPlace").html("<a href='"+"mai"+"lto:"+"s"+"."+"esacre"+"@"+"wanadoo"+"."+ "fr"+"' onclick='this.blur();' style='outline:none;' title='Envoyez un email' >"+"s"+"."+"esacre"+"@"+"wanadoo"+"."+ "fr"+"</a>");
  });

