Answers for "other html to click remove class in javascript"

25

how to remove a class from element with javascript

const div =  document.querySelector('div') // Get element from DOM
div.classList.remove('info') // Remove class "info"
Posted by: Guest on January-03-2021
0

body click function removeclass

$(document).ready(function () {
            $('.div, section').click(function () {
                $('.sopping-box').addClass('sopping-box');
                $('.sopping-box').removeClass('sopping-box-collapse');
            });
        });
Posted by: Guest on December-26-2021

Code answers related to "other html to click remove class in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language