Answers for "add class on id jquery"

0

jquery on click add class

$(document).ready(function(){
  $("button").click(function(){
    $(".p").addClass("intro");
  });
});
Posted by: Guest on March-03-2021
7

add class jquery

$("#my_id").attr("class", "my_new_class_name");
Posted by: Guest on April-13-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language