If I have the following in my html:
And this in my c
This can be accomplished in two steps:
1: select the element you want to change by either tagname, id, class etc.
var element = document.getElementsByTagName('h2')[0];
element.removeAttribute('style');