tobie (owner)

Revisions

gist: 4867 Download_button fork
public
Public Clone URL: git://gist.github.com/4867.git
Embed All Files: show embed
removeattribute.js #
1
2
3
4
5
6
7
8
9
10
var element = document.getElementById('foo');
try {
  element.removeAttribute.apply(element, ['title']);
  // using apply to simulate what Enum#invoke does.
} catch (e) {
  alert(e.name + ': ' + e.message);
}
 
// in IE alerts: TypeError: Object doesn't support this property or method