Skip to content

Instantly share code, notes, and snippets.

@phiggins42
Created February 20, 2011 12:54
Show Gist options
  • Save phiggins42/835951 to your computer and use it in GitHub Desktop.
Save phiggins42/835951 to your computer and use it in GitHub Desktop.
function noteval(code, doc){
// add some javascript to a document, like an iframe
//
// var iframe = document.getElementById("theframe");
// noteval('alert("hi")', iframe.contentDocument || iframe.)
var e = doc.createElement("script"),
how = "text" in e ? "text" :
"textContent" in e ? "textContent" :
"innerHTML" in e ? "innerHTML" :
"appendChild"
;
if(how == "appendChild"){
e[how](d.doc.createTextNode(code));
}else{
e[how] = code;
}
(doc.head || doc.getElementsByTagName("head")[0]).appendChild(e);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment