I have an iframe and I wrote this code
window.parent.document.getElementById('parentPrice').innerHTML
to access parent element. How to get the same result using jquery?
UPDATE: Or how to access iFrame parent page using jquery?
|
I have an iframe and I wrote this code
to access parent element. How to get the same result using jquery? |
||||
|
|
|
To find in the parent of the iFrame use:
The second parameter for the $() wrapper is the context in which to search. This defaults to document. |
|||||||||||||||||
|
window.parent.document. jQuery is a library on top of JavaScript, not a complete replacement for it. You don't have to replace every last JavaScript expression with something involving $. |
|||||||||||||||
|
|
in parent window put :
and in iframe src file put : window.parent.ifDoneChildFrame('Your value here'); |
|||
|
|
|
It's working for me with little twist. In my case I have to populate value from POPUP JS to PARENT WINDOW form. So I have used Excellent!!! |
||||
|
|
|
Might be a little late to the game here, but I just discovered this fantastic jQuery plugin https://github.com/mkdynamic/jquery-popupwindow. It basically uses an onUnload callback event, so it basically listens out for the closing of the child window, and will perform any necessary stuff at that point. SO there's really no need to write any JS in the child window to pass back to the parent. |
||||
|
|
|
yeah it works for me as well. Note : we need to use window.parent.document
|
|||
|
|
|
If you need to find the jQuery instance in the parent document (e.g., to call an utility function provided by a plug-in) use one of these syntaxes:
Example:
jQuery gets attached to the |
|||
|
|