Advertisement
Guest User

Untitled

a guest
Aug 30th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. $(function() {
  2. $("a[href^=mailto:]").each(function(){
  3. var sEmailAddress = $(this).text();
  4. $(this).replaceWith(sEmailAddress);
  5. });
  6. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement