I have a "Page A". In this page is an iframe
which displays "Page B".
<iframe id="iframeD" src="https://trello.com" width="600" height="600">
<p>Your browser does not support iframes.</p>
</iframe>
<div id="cTitle">Hello</div>
(See the following fiddle for a working example: http://jsfiddle.net/noscirre/yYkUN/)
"Page B" contains a div
with id landingHeader
. How can I create a jQuery call on "Page A" replace this div
with another div
(whose content is found on "Page A") with id cTitle
?