- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
jQuery :first Selector
The :first selector in jQuery is used to select the first DOM element.
Syntax
The syntax is as follows −
$(":first")
Example
Let us now see an example to implement the :first() selector −
<!DOCTYPE html> <html> <head> <style> .demo { background-color: red; color: white; font-size: 16px; border: 2px blue dashed; } </style> <script src="https://code.jquery.com/jquery-3.4.1.js"></script> <script> $(document).ready(function(){ $("input:first").addClass("demo"); }); </script> </head> <body> <h2>Job Application</h2> <form action=""> Applicant Name: <input type="text" name="cname"><br> Rank: <input type="number" name="rank"><br><br> Resume: <input type="file" name="myfile"> </form> </body> </html>
Output
This will produce the following output −
- Related Articles
- jQuery :first-child Selector
- jQuery :first-of-type Selector
- How to exclude first and second element from jQuery selector?
- jQuery :button Selector
- jQuery :checkbox Selector
- jQuery :checked Selector
- jQuery :contains() Selector
- jQuery :disabled Selector
- jQuery :empty Selector
- jQuery :enabled Selector
- jQuery :even Selector
- jQuery :file Selector
- jQuery :focus Selector
- jQuery :gt() Selector
- jQuery :header Selector

Advertisements