email_obfuscator.js 187 B

123456
  1. $(document).ready(function() {
  2. $('.email-address').hover(function() {
  3. var actual_href = $(this).attr('href').replace('\.spam', '\.com');
  4. $(this).attr('href', actual_href);
  5. });
  6. });