
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- 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 Only Of Type Selector
The :only-of-type selector in jQuery is used to select elements which are the only child of its type of its parent.
Syntax
The syntax is as follows −
$(":only-of-type")
Example
Let us now see an example to implement the jQuery :only-of-type selector −
<!DOCTYPE html> <html> <head> <style> .one { color: white; background-color: orange; font-size: 16px; border: 2px blue dashed; } </style> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("p:only-of-type").addClass("one"); }); </script> </head> <body> <h1>Match Details</h1> <p>One</p> <p>Two</p> <div style="border:1px solid;"> <p>Date: 29th October 2019</p> <p>Timings: 3PM TO 8PM</p> <p>Ground: DY Patil</p> </div><br> <div style="border:1px solid;"> <span>Match Cancelled</span> <p>Ground: Indore Stadium</p> </div><br> <div style="border:1px solid;"> <p>Date: 29th October 2019</p> <p>Timings: 8PM TO 11PM</p> <p>Ground: Eden Gardens</p> </div> <div style="border:1px solid;"> <p>Date: 30th October 2019</p> </div> <p>Three</p> </body> </html>
Output
This will produce the following output −
Advertisements