[jQuery] iframe question -> frameReady plugin
Are there any way to pass a param (I need to pass a DIv object) from
parent to the iframe child?
My code:
(iwould like to use newContent info)
var newContent = jQuery("#containerDiv")[0].innerHTML
jQuery.frameReady(
function()
{
debugger;
jQuery("#containerContent")[0].innerHTML = newContent;
},
"top.printContentIframe"
);