I have a form with multiple fields , in that form i also have a iframe which is calling another page from different domain which also contains a form, now on submitting the main form, i need to check whether the iframe form is submitted or not. How to validate that?
main page
<iframe src="http://www.differntdomain.com/index.html"></iframe>
index.html also has a form
i need to check that the form is submitted in main page form submission.
Please help!!!