I have series of buttons with different classes consisting ":before" pseudo elements with different predefined "content" values. Is there is a way to "null" content value of all buttons using javascript (not jquery)?.
.button 1:before{content:"xxx";} .button 2:before{content:"yyy";} .button 3:before{content:"zzz";}...etc.
to
.button 1:before{content:" ";} .button 2:before{content:" ";} .button 3:before{content:" ";}...etc.