return '<span class="Email">' and just insert " unformatted" (with the space) after that Email. So that line will now start like this:return '<span class="Email EmailUnformatted">' // Format email addresses
$('span.Email').livequery(function() {
var html = $(this).html();
var email = $(this).html().replace(/<em>dot<\/em>/ig, '.').replace(/<strong>at<\/strong>/ig, '@');
$(this).html('<a href="mailto:' + email + '">' + email + '</a>');
}); and replace it with this: // Format email addresses
$('span.Email.EmailUnformatted').livequery(function() {
var el = $(this);
el.removeClass('EmailUnformatted');
var email = el.html().replace(/<em>dot<\/em>/ig, '.').replace(/<strong>at<\/strong>/ig, '@');
el.html('<a href="mailto:' + email + '">' + email + '</a>');
}); It looks like you're new here. If you want to get involved, click one of these buttons!