Answers for "id selector in jquery"

6

jquery select by id

<p id="test" class="hello">Hello</p>

<script>
  //Hide all elements "p"
  $("p").hide();
  //Hide id="Test"
  $("#test").hide();
  //Hide all class="hello"
  $(".hello").hide();
  //Hide all "p" with class="hello"
  $("p.test").hide();
</script>
Posted by: Guest on October-19-2021
1

how to select id in jquery

$(document).ready(function() { 
let tags = $("p"); //for tags
let classes = $('.myClass'); //for class
let id = $('#myID'); // for ID
})
Posted by: Guest on May-21-2021

Browse Popular Code Answers by Language