Answers for "remove attribute using jquery"

14

remove attribute jquery

$("button").click(() => {
  $("div").removeAttr("id"); // <div id='12' class='nice'></div> --> <div class='nice'></div>
});
Posted by: Guest on March-23-2020
-2

remove attribute jquery

$('p').attr('style','');
Posted by: Guest on October-29-2020

Code answers related to "remove attribute using jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language