- 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
Found 741 Articles for JQuery

140 Views
The jQuery end() method reverts the most recent destructive operation, changing the set of matched elements to its previous state right before the destructive operation.This is how you can use it,operations.end()ExampleYou can try to run the following code to learn about jQuery destructive method end(),Live Demo jQuery end() function $(document).ready(function(){ $("p").find("span").end().css("border", "4px red solid"); }); p{ margin:5px; padding:5px; } Hello World!

545 Views
The grep() method finds an element and the filter() method returns elements matching a specific criteria.jQuery grep functionExampleThe grep() function is used to find an element of an array. You can try to run the following code to learn how to work with grep(), Live Demo jQuery grep() function div { color: blue; } p { color: red; margin: 0; } var arr1 = [ 1, 7, 4, 8, 6, 1, 9, 5, 3, 7, ... Read More

69 Views
The end() method reverts the most recent destructive operation, changing the set of matched elements to its previous state right before the destructive operation.ExampleYou can try to run the following code to learn how to work with end function in jQuery:Live Demo jQuery end() function $(document).ready(function(){ $("p").find("span").end().css("border", "2px blue solid"); }); p{ margin:10px; padding:10px; } Hello World!

145 Views
jQuery.offsetParent()The offsetParent() method returns a jQuery collection with the positioned parent of the first matched element.This is the first parent of the element that has position (as in relative or absolute). This method only works with visible elements.ExampleYou can try to run the following code to learn how to work with jQuery.offsetParent() in jQuery:Live Demo jQuery offsetParent() method $(document).ready(function() { $("div").click(function () { ... Read More

3K+ Views
The closest() method begins with the current element and returns only the first ancestors matching the passed expression. This returned jQuery object has zero or one element. Using the class selector is easy and let us see how to use it below.ExampleYou can try to run the following code to learn how to use jQuery.closest() method with class selector:Live Demo .myclass * { display: block; border: 2px solid blue; color: red; padding: 5px; margin:10px; } $(document).ready(function(){ $("span").closest(".one").css({"color": "maroon", "border": "5px solid ... Read More

511 Views
The jQuery closest and parents method is used to set or get the first or all ancestor element, matching the selector. Let's see the difference below:jQuery closest() methodThe closest() method begins with the current element and returns only the first ancestors matching the passed expression. This returned jQuery object has zero or one element.ExampleYou can try to run the following code to learn how to work with jQuery closest method −Live Demo .myclass * { display: block; border: 2px solid blue; color: red; padding: 5px; margin:10px; } ... Read More

154 Views
The closest() method begins with the current element and returns only the first ancestors matching the passed expression. This returned jQuery object has zero or one element.ExampleYou can try to run the following code to learn how to work with jQuery closest method:Live Demo .myclass * { display: block; border: 2px solid blue; color: red; padding: 5px; margin:10px; } $(document).ready(function(){ $("span").closest("ol").css({"color": "gray", "border": "3px solid yellow"}); }); body div ol - This is the ... Read More

65 Views
If you want to return all next sibling elements, then use the nextAll() method.ExampleYou can try to run the following code to learn how to use the jQuery.nextAll() method:Live Demo .mysiblings * { display: block; border: 1px solid green; padding: 2px; margin: 10px; color: blue; } $(document).ready(function(){ $("li.myclass").nextAll().css({"color": "maroon", "border": "3px solid "}); }); ol li- This is the sibling of parent ol li- This is the sibling of parent ol li- This is the sibling of parent ol with class 'myclass' li- next sibling li- next sibling li- next sibling li- next sibling

57 Views
If you want to return all the direct children of selected elements, then use the jQuery.children() method,ExampleYou can try to run the following code to learn how to work with jQuery.children() method in jQuery,Live Demo .myclass * { display: block; border: 2px solid blue; color: black; padding: 3px; margin: 10px; } $(document).ready(function(){ $("ol").children().css({"color": "red", "border": "5px solid red"}); }); body div ol li - This is the child span

53 Views
The andSelf( ) method adds the previous selection to the current selection. The method is useful when you have multiple traversals in your script and then adding something that was matched before the last traversal.ExampleYou can try to run the following code to learn how to work with jQuery.andSelf() method:Live Demo jQuery andSelf() method $(document).ready(function(){ $("div").find("p").andSelf().addClass("border"); }); p, div { margin:5px; padding:5px; } .border { border: 2px solid red; } .background { background:yellow; } First Paragraph Second Paragraph