Skip to content

Instantly share code, notes, and snippets.

@DavidNix
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DavidNix/8904074 to your computer and use it in GitHub Desktop.
Save DavidNix/8904074 to your computer and use it in GitHub Desktop.
Obfuscator = function (selector) {
var $el = $(selector);
var prefix = "mailto:";
var name = "test";
var domain = "@example.com";
var href = prefix + name + domain + href;
$el.on("click", function () {
$el.attr("href", href);
setTimeout(function () {
$el.attr("href", "#");
}, 25);
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment