Ok so I have an iframe on the Contact page of my website.
The src of the iframe points to another file containing a Google Docs form.
Once the Google docs form is submitted, the page is redirected to a Google page saying that "your response has been recorded".
I have this form inside an iframe so that it doesn't redirect viewers away from my entire site, but instead only the iframe document is redirected.
This all works fine, But I want to show my own message instead of the Google "your response has been recorded".
To do this, basically I want to know when the iframe has been redirected and/or (preferably) the form has been submitted.
Things i've tried...
onhaschange="" inside the iframe element
onsubmit="" inside the form element (which is in the iframe src file)
Any other ideas?