On 3/27/06, Oatka <oatka at yahoo.com> wrote:
>
> Does anyone know what code to use to make Greasemonkey search a page for a
> specific word, and if that word is found then to display an alert window?
> --
Something like:
if (/(\W|^)word(\W|$)/.exec(document.body.innerHTML)) {
}
?