ORDER MAILING LISTS ONLINE
jQuery(document).ready(function(){
jQuery('.page-id-24048 .site-content #page-header .page-heading h1.entry-title').each(function() {
var textArry = jQuery(this).text().split(" ");
jQuery.each(textArry, function(index) {
if (textArry[index].match("^M") || textArry[index].match("^L"))
textArry[index] = '<span class="mention">' + textArry[index] + '</span>';
});
var output = textArry.join(' ');
jQuery(this).html(output);
});
});
joy Asked question October 6, 2021