Skip to content

Instantly share code, notes, and snippets.

@gecbla
Last active December 19, 2015 21:48
Show Gist options
  • Save gecbla/6022264 to your computer and use it in GitHub Desktop.
Save gecbla/6022264 to your computer and use it in GitHub Desktop.
jQuery iframe snippet
// v1
var iframe = $('#iframe-id').context;
$('selector', $(iframe) ).
// v2
var $iframe = $('#iframe-id').contents();
$iframe.find('selector');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment