if it possible tell if an Iframe content has changed after the page has loaded?
$('iframe').on('load' function () {
alert('iframe loaded')
})
will only alert once th page has loaded.
$('iframe').on('change' function () {
alert('iframe changed')
})
is not called if addition content is added to the iframe