The first() is an inbuilt function in jQuery which is used to select the first element from the specified elements.
Syntax:
$(selector).first()
Here selector is the main class of all the elements.
Parameters: It does not accept any parameter.
Return value: It returns the first element out of the selected elements.
Code #1:
<html> <head> jquery/3.3.1/jquery.min.js"></script> <script> $(document).ready(function() { $("div").first().css("background-color", "lightgreen"); }); </script> </head> <body> <h1>Welcome to GeeksforGeeks !!!</h1> <div style="border: 1px solid green;"> <p>This is the first statement.</p> </div> <br> <div style="border: 1px solid green;"> <p>This is the second statement.</p> </div> <br> <div style="border: 1px solid green;"> <p>This is the third statement.</p> </div> <br> </body> </html> |
In the above code, the background-color of the first “div” element get changed.
Output:

Here, you can also chose by selecting “id” or “class” of the selected element.
Code #2:
<html> <head> jquery/3.3.1/jquery.min.js"></script> <script> $(document).ready(function() { $(".main").first().css("background-color", "lightgreen"); }); </script> </head> <body> <h1>Welcome to GeeksforGeeks !!!</h1> <div style="border: 1px solid green;"> <p>This is the first statement.</p> </div> <br> <div class="main" style="border: 1px solid green;"> <p>This is second statement.</p> </div> <br> <div class="main" style="border: 1px solid green;"> <p>This is the third statement.</p> </div> <br> </body> </html> |
In the above code the elements with first “main” class get highlighted.
Output:

Recommended Posts:
- jQuery | jQuery.fx.interval Property with example
- jQuery | jQuery.fx.off Property
- jQuery | jQuery.support Property
- jQuery | jquery Property
- jQuery | :first-of-type Selector
- jQuery | :first Selector
- jQuery | :first-child Selector
- How to select first element in the drop-down list using jQuery ?
- How to convert first letter of a string to upper case using jQuery ?
- jQuery | prepend() with Examples
- jQuery | dblclick() with Examples
- jQuery | offset() with Examples
- jQuery | children() with Examples
- jQuery | Hide/Show, Toggle and Fading methods with Examples
- jQuery | focusin() with Examples
- jQuery | Animation, Slide methods with Examples
- jQuery | change() with Examples
- jQuery | filter() with Examples
- jQuery | height() and innerHeight() with Examples
- jQuery | eq() with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.


