6 lines
214 B
JavaScript
6 lines
214 B
JavaScript
(function(){
|
|
//TODO vanilla
|
|
var mail = $('span.mailto').html();
|
|
mail = mail.replace('<span style="display:none;">no-thx-</span>','');
|
|
$('span.mailto').html('<a href="mailto:'+mail+'">'+ mail +'</a>');
|
|
})(); |