Subversion Repositories eFlore/Applications.coel-consultation

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
93 jpm 1
/*Courriel() est basé sur les sources suivantes :
2
	http://www.html-advisor.com/javascript/hide-email-with-javascript-jquery/
3
	http://plugins.jquery.com/files/jquery.mailme.js.txt
4
*/
5
jQuery.fn.courriel=function(){var a=/ \[arrobase\] /;var b=/ \[point\] /g;this.each(function(){var d=jQuery(this).text().replace(a,"@").replace(b,".");var c=jQuery(this).attr("title");$(this).after('<a href="mailto:'+d+'" title="'+c+'">'+d+"</a>").remove()})};