- 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
How to use jQuery.slice() method with no arguments?
The jQuery.slice() method is used to select subset of elements. It uses an index to set the selection. You can use it without arguments. Without argument, it will select all the elements.
The slice() is equal to slice(0) i.e. without arguments.
Example
You can try to run the following code to use jQuery slice() method without arguments:
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("p").slice(0).css("background-color", "gray"); }); </script> </head> <body> <h1>Heading 1</h1> <p>This is demo text 1.</p> <p>This is demo text 2.</p> <p>This is demo text 3.</p> </body> </html>
Advertisements