Is it possible to remove the attribute of the first HTML tag? So, this: aaa
tag? So, this: aaa
aaa
it is easy in jQuery just use
$("div:first").removeAttr("style");
in javascript
use var divs = document.getElementsByTagName("div");
divs[0].removeAttribute("style");