How to remove CSS using jQuery
How can I remove the height CSS property from my div with id balls-conatiner? Below is the method used but it is not working. $('#btn').on('click', function() { var $container = $('#balls-container'); const div = document.createElement('div'); div.classList.add('ball'); $container.append(div); $container.css({ height: "",…