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:

Live Demo

<!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>

Updated on: 17-Dec-2019

147 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements