Skip to content

Instantly share code, notes, and snippets.

@derick-montague
Created August 17, 2012 06:00
Show Gist options
  • Save derick-montague/3376328 to your computer and use it in GitHub Desktop.
Save derick-montague/3376328 to your computer and use it in GitHub Desktop.
// http://www.robertmullaney.com/2010/11/12/safe-email-mailto-links-using-jquery/
generateMail : (function() {
$('a[href*="[at]"][href*="[dot]"]').each(function() {
var email = $(this).attr('href').split('[at]').join('@').split('[dot]').join('.');
$(this).attr('href', 'mailto:' + email.toLowerCase());
$(this).text(email);
});
}),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment