Skip to content

Instantly share code, notes, and snippets.

@habibimroncn
Created February 10, 2016 02:26
Show Gist options
  • Save habibimroncn/ce29beb9f4e36b78c5ca to your computer and use it in GitHub Desktop.
Save habibimroncn/ce29beb9f4e36b78c5ca to your computer and use it in GitHub Desktop.
jQuery Scramble Web Page Email Addresses from Sam Deering
jQuery(document).ready(function($) {
//email spam protection - Example Markup: name[at]domain[dot]com
$('.email').each(function() {
var $email = $(this);
var address = $email.text()
.replace(/s*[at]s*/, '@')
.replace(/s*[dot]s*/g, '.');
$email.html(''+ address +'');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment