Skip to content

Instantly share code, notes, and snippets.

@benjamn
Created March 2, 2011 02:19
Show Gist options
  • Save benjamn/850342 to your computer and use it in GitHub Desktop.
Save benjamn/850342 to your computer and use it in GitHub Desktop.
function getFrame() {
var frame,
frames = window.parent.document.getElementsByTagName("iframe");
for (var i = 0; frame = frames[i]; ++i)
if (frame.contentWindow === window)
return frame;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment