Here is example existing HTML , i'm not authorized to alter
<a target="new" href="#">KCC 26 v MIN 23</a>
Trying to add some NFL icons in leu of the abbr names for each
so i tried this out to test for KCC text found anywhere on the page but doesn't work. Any ideas ? So i'd like to leave all existing HTML the same and grab some team abbr text names and replace with an icon. In the above HTML i would replace KCC and MIN with 2 different images.
$("*").filter(function() { return !$(this).children().length; })
.html(function(index, old) { return old.replace('KCC', '<img ... />'); });