Skip to content

Instantly share code, notes, and snippets.

@rcerrejon
Last active June 8, 2016 09:56
Show Gist options
  • Save rcerrejon/285c51bf98ac9bf8e561c16e626b7372 to your computer and use it in GitHub Desktop.
Save rcerrejon/285c51bf98ac9bf8e561c16e626b7372 to your computer and use it in GitHub Desktop.
Anti Spam Email
$("span.mailto").each(function(){
var at = / at /;
var dot = / dot /g;
var addr = $(this).text().replace(at,"@").replace(dot,".");
$(this).after('<a href="mailto:'+addr+'" title="E-Mail senden">'+ addr +"</a>");
$(this).remove();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment