Skip to content

Instantly share code, notes, and snippets.

@jugglinmike
Created June 4, 2012 14:37
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save jugglinmike/2868777 to your computer and use it in GitHub Desktop.
Save jugglinmike/2868777 to your computer and use it in GitHub Desktop.
Bocoup.com: Future of 3PJS
<div class="container">
<style scoped>
p { color: red; }
</style>
<p>This paragraph has red text.<p>
</div>
<p>This paragraph does not.</p>
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();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment