Skip to content

Instantly share code, notes, and snippets.

@zhuzhuaicoding
Created September 30, 2012 02:24
Show Gist options
  • Save zhuzhuaicoding/3805673 to your computer and use it in GitHub Desktop.
Save zhuzhuaicoding/3805673 to your computer and use it in GitHub Desktop.
create an iframe with name for compatitable
var iframe;
try {
iframe = document.createElement('<iframe name="test">'); // for ie
} catch (ex) {
iframe = document.createElement('iframe');//for standard browser
}
iframe.name = 'test';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment