Element.removeAttributeNode() - видаляє атрибут у елементі.
Element.removeAttributeNode( obAttr );
Element - об'єкт Element.
obAttr - об'єкт атрибуту Attr.
removeAttributeNode() метод об'єкту Element який видаляє вказаний атрибут у елементі за вказаним об'єктом атрибуту Attr.
#test
var el = document.getElementById("test");
var atr = el.getAttributeNode("style"); // отримуємо об'єкт атрибуту
if(atr==null)alert('атрибуту style у елементі немає, так як Ви його уже видалили!');
else
el.removeAttributeNode( atr );