Remove attribute from an element using jQuery
I am trying to remove an attribute from an element using jQuery. HTML code- <div class="accordion"> <label>Test 1</label> <article style="max-height: inherit">Content 1</article> <label>Test 2</label> <article>Content 2</article> </div> jQuery code - $(".accordion label").on("click", function(e){ if($(this).next().attr('max-height')){ $(this.next()).removeAttr("max-height"); } }); It doesn't trigger…