i trying send <div> height <iframe> parent (cross domains):
child page code (iframe):
<script> var h = $('#frame').height(); parent.postmessage(h, '*'); <script> the parent page:
<script> window.addeventlistener("message", function (e) { alert(e.data); }, false ); </script> i tested in chrome , ie11 without success!
here test page: http://pulse.org.il/test.html
Comments
Post a Comment