Tutorial Find and Wrap Ampersands
Load this plugin. Then: $("body *").replaceText( /&/gi, ' ' + '&' + ' ' ); Change the selector as ...
https://iskablogs.blogspot.com/2014/03/tutorial-find-and-wrap-ampersands.html
Load this plugin. Then:
$("body *").replaceText( /&/gi, '' + '&' + '' );
Change the selector as needed. That one is pretty intense.
Now you have a class name you can use to style them specially.
.ampersand {
font-family: Baskerville, Some Other Cool Font, Serif;
font-style: italic;
}
Reference URL
$("body *").replaceText( /&/gi, '' + '&' + '' );
Change the selector as needed. That one is pretty intense.
Now you have a class name you can use to style them specially.
.ampersand {
font-family: Baskerville, Some Other Cool Font, Serif;
font-style: italic;
}
Reference URL