Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

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);
});
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #change #html #jquery
ADD COMMENT
Topic
Name
9+6 =