jquery

selectors:

jQuery selectors allow you to select and manipulate HTML element(s).

$(document).ready(function(){
  $("button").click(function(){
    $("p").hide();
  });
});

Posted on by