Skip to content

Instantly share code, notes, and snippets.

@guigmaster
Created September 2, 2013 15:54
Show Gist options
  • Save guigmaster/6414388 to your computer and use it in GitHub Desktop.
Save guigmaster/6414388 to your computer and use it in GitHub Desktop.
set attribute cross browser
window.onload = function () {
var element = document.body;
var attr = document.createAttribute('class');
attr.nodeValue = 'ie7';
element.setAttributeNode(attr);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment