ginou/scripts/mail.js

12 lines
365 B
JavaScript
Raw Normal View History

jQuery(document).ready(function($)
{
2021-01-09 00:11:40 +00:00
// a n t i s p a m (hopefully)
$('a.mail').on('click', function()
{
2021-01-09 00:11:40 +00:00
var href = $(this).attr('href');
var a1 = "adres" ; var a2 = "se em"; var a3 = "ail";
var goodMail = a1 + a2 + a3;
$(this).attr('href', href.replace('badmail', goodMail));
$(this).html(goodMail);
});
});