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
If you are using jQuery, use css to add CSS
$("#voltaic_holder").css({'position': 'absolute', 'top': '-75px'});
To remove CSS attributes
$("#voltaic_holder").css({'position': '', 'top': ''});