Answers for "jquery on click remove style"

CSS
1

jquery add remove class clicked element

$(function() {
    $('img').click(function() {
       $(this).toggleClass('active');
    });
});
Posted by: Guest on January-19-2021
1

jquery remove style

//removing css with jQuery. i.e: set to default 
$( "#myElementID" ).css("background-color", "");//just blank it out
Posted by: Guest on July-25-2019

Code answers related to "jquery on click remove style"

Browse Popular Code Answers by Language