Created
June 4, 2012 14:37
Revisions
-
jugglinmike created this gist
Jun 4, 2012 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ <div class="container"> <style scoped> p { color: red; } </style> <p>This paragraph has red text.<p> </div> <p>This paragraph does not.</p> This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ function wrapInIframe( iframe, content ) { var win = iframe.contentWindow; var doc; if (!win) { throw("Failed to wrap content in iFrame: \ please ensure the target iFrame is appended \ to the document before writing"); } doc = win.document; doc.open(); doc.write(content); doc.close(); }