Adding and removing style attribute from div with jquery

前端 未结 7 2032
走了就别回头了
走了就别回头了 2021-01-30 00:53

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

7条回答
  •  面向向阳花
    2021-01-30 01:16

    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': ''});
    

提交回复
热议问题