- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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 closest() with Example
The closest() method in jQuery is used to return the first ancestor of the selected element.
Syntax
The syntax is as follows −
$(selector).closest(filter)
Example
Let us now see an example to implement the jQuery closest() method −
<!DOCTYPE html> <html> <head> <style> .demo * { display: block; border: 2px solid blue; padding: 5px; margin: 15px; } </style> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("span").closest("ol").css({"background-color": "orange", "color": "black","border": "3px dashed orange"}); }); </script> </head> <body class="demo">body <div style="width:600px;"> <ol>ol <ol>ol <ol>ol <li>li <span>span</span> </li> </ul> </ul> </ul> </div> </body> </html>
Output
This will produce the following output −
- Related Articles
- jQuery appendTo() with Example
- jQuery dblclick() with Example
- jQuery fadeOut() with Example
- jQuery find() with Example
- jQuery first() with Example
- jQuery focus() with Example
- jQuery click() with Example
- jQuery blur() with Example
- jQuery focusin() with Example
- jQuery finish() with Example
- jQuery addClass() with Example
- jQuery focusout() with Example
- jQuery nextUntil() with Example
- jQuery innerWidth() with Example
- jQuery change() with Example

Advertisements