How can I detect that an iframe on my page starts to load a new page?
Our situation is:
- When iFrame content starts to change we need to display a "loading" animation and hide the search-box.
- I know how to handle the "iframe has finished to load" event (to hide the animation) but not how to catch the initial "starting to change" event...
Note: I can attach jquery "click" hook to the links on the menu, which will work. However, inside the iframe content there are many cross-reference links, and the "change" event also applies for them! So we need to catch event when user clicks on a link inside the iframe or when the iframe src is changed via javascript - because we also want to show the loading-animation and hide the search-box.