Skip to content

Instantly share code, notes, and snippets.

@zry656565
Last active August 29, 2015 14:11
Show Gist options
  • Save zry656565/0b7c9f5a8583c6efd91f to your computer and use it in GitHub Desktop.
Save zry656565/0b7c9f5a8583c6efd91f to your computer and use it in GitHub Desktop.
[front-end] Get document object of iframe
//original javascript
var doc = document.getElementById('iframeId').contentWindow.document;
//jquery
var doc = $('#iframe').contents();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment