Skip to content

Instantly share code, notes, and snippets.

@netsuite
Created October 8, 2013 12:19
Show Gist options
  • Save netsuite/6883815 to your computer and use it in GitHub Desktop.
Save netsuite/6883815 to your computer and use it in GitHub Desktop.
js: access form inside iframe
var ifr = document.getElementById( yourIframeId );
var ifrDoc = ifr.contentDocument || ifr.contentWindow.document;
var theForm = ifrDoc.getElementById( yourFormId );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment