I\'ve inherited a project I\'m working on and I\'m updating some jquery animations (very little practice with jquery).
I have a div I need to add and remove the style at
To completely remove the style attribute of the voltaic_holder
span, do this:
$("#voltaic_holder").removeAttr("style");
To add an attribute, do this:
$("#voltaic_holder").attr("attribute you want to add", "value you want to assign to attribute");
To remove only the top style, do this:
$("#voltaic_holder").css("top", "");