I have 2 pages: Parent and child.
In the parent page I have an iframe whose value I want to fetch in the JavaScript of child page. Is there any way?....Please suggest
You can use
window.parent.getElementById('YOUR ID').value();
to get the value from the input element with the id "YOUR ID" from the parent.