// JavaScript Document
//Caché un document dans le body  <button type="button">Click me</button>
$(document).ready(function(){
  $("button").click(function(){
  $(this).hide();
});
});
