I have a Greasemonkey script which uses jQuery and detects if a "class" is present in the document.
var damageMessage = $(".mw_error").text();
This works fine when the document loads and damageMessage
holds a text string.
The problem is that the "class" .mw_error
is inside an iframe and when you click a new link inside, the iframe content loads without a page refresh but the contents of "class" do change and I want to get the new contents or text string.
I’m guessing it’s because the document doesn’t reload that the Greasemonkey script doesn’t load again and try and find the updated class contents. Somehow I need to get the new contents of the class.
Any help on this would be much appreciated :)