Skip to content

Instantly share code, notes, and snippets.

@grahamb
Created June 1, 2010 06:33
Show Gist options
  • Save grahamb/420641 to your computer and use it in GitHub Desktop.
Save grahamb/420641 to your computer and use it in GitHub Desktop.
$('#mysfu_container').delegate('a[href^="mailto:"]', 'click', function(e) {
var href = $(this).attr('href').substr(7).split('?')
, to = href[0]
, params = href.length > 1 ? href[1].split('&') : null;
console.log(to, params);
e.preventDefault();
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment