I have this code in the iframe.
<script type="text/javascript">
$(document).ready(function(){
$("body").append($("#ctap").html());
});
</script>
I want to append #ctap's html to parent body. How can I do that ?
Try following piece of code inside document.ready
parent.$("body").append($("#ctap").html());
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With