:first Selector - Javascript jQuery Selector

Javascript examples for jQuery Selector:first

Description

The :first selector selects the first element.

The following code shows how to select the first <p> element:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("button").click(function(){
        var btn = $(this).text();
        $("p").css("background-color", "white");
        $("p" + btn).css("background-color", "yellow");
    });//from   w ww  . java  2 s  .  co m
});
</script>
</head>
<body>

<p>A</p>

<div style="border:1px solid;">
  <p>B</p>
  <p>C</p>
</div><br>

<div style="border:1px solid;">
  <span>D</span>
  <p>E</p>
  <p>F</p>
  <span>G</span>
</div><br>

<div style="border:1px solid">
  <p>H</p>
  <p>I</p>
</div>

<p>The last paragraph in body, and the last child in div.</p>

<button>:first</button>
<button>:first-child</button>
<button>:first-of-type</button><br><br>

</body>
</html>

Related Tutorials