WK_of_Angmar

Yahoo! Answers - Barkley Hound's Question

Aug 1st, 2012
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var ifrm = document.getElementById('hiddenFrame');
  2. if(ifrm.contentWindow) {
  3.     ifrm = ifrm.contentWindow;
  4. } else {
  5.     if (ifrm.contentDocument.document) {
  6.         ifrm = ifrm.contentDocument.document;
  7.     } else {
  8.         ifrm = ifrm.contentDocument;
  9.     }
  10. }
  11. ifrm.document.open();
  12. ifrm.document.write(codeList);
  13. ifrm.document.close();
Add Comment
Please, Sign In to add comment