Guest User

Untitled

a guest
Aug 31st, 2013
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. var iframe = document.getElementById('iframeId');
  2. var innerDoc = (iframe.contentDocument) ? iframe.contentDocument : iframe.contentWindow.document;
  3.  
  4. var iframe = document.getElementById('iframeId');
  5. var innerDoc = iframe.contentDocument || iframe.contentWindow.document;
Add Comment
Please, Sign In to add comment