how to remove a class jquery

JavaScript
$("button").click(function(){
  $("p").removeClass("intro");
 });
 
Source

Also in JavaScript: