freeCodeCamp/guide/portuguese/certifications/front-end-libraries/jquery/target-elements-by-id-using.../index.md

454 B

title localeTitle
Target Elements by id Using jQuery Elementos de destino por id usando jQuery

Elementos de destino por id usando jQuery

Solução

<script> 
  $(document).ready(function() { 
    $("button").addClass("animated bounce"); 
    $(".well").addClass("animated shake"); 
    $("#target3").addClass("fadeOut"); // Target elements with the id "target3" and add the class "fadeOut" to them. 
  }); 
 </script>