Skip to content

Instantly share code, notes, and snippets.

@lukehedger
Last active December 30, 2015 21:29
Show Gist options
  • Save lukehedger/7888229 to your computer and use it in GitHub Desktop.
Save lukehedger/7888229 to your computer and use it in GitHub Desktop.
Check for parent window/iframe
# check if page loaded within iframe
if window.parent != window
console.log 'within iframe'
# access properties from the parent window object
orientation = window.parent.orientation
else
console.log 'no iframe'
# access properties from the window object as normal
orientation = window.orientation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment