var foundin = $('*:contains("the")').last();
works on a page, but
var foundin = $('*:contains("©")').last();
returns nothing, even though '©' does appear in the page source. I tried escaping the '&', but that doesn't work either. Is there a way to use contains to find an html encoded character in a page?
Basically, what I want to do is find the element contains © and parse it to get the copyright holder. I asked a similar question aiming at this with regex here: select HTML text element with regex?