Answers for "how to change update a tag in jquery"

1

change html using jquery

//Takes input from entire page and uses it to change the HTML of h1
$(document).keypress(function(event){
  $("h1").text(event.key);
});
Posted by: Guest on April-21-2021

Code answers related to "how to change update a tag in jquery"

Browse Popular Code Answers by Language