
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
AmitDiwan has Published 10744 Articles

AmitDiwan
103 Views
The :odd selector in jQuery is used to select odd elements i.e. with odd index number.Note − The :odd selector deprecated in jQuery 3.4SyntaxThe syntax is as follows −$(":odd")ExampleLet us now see an example to implement the :odd() selector − .one { background-color: ... Read More

AmitDiwan
256 Views
The :nth-of-type() selector in jQuery is used to select all elements that are the nth child of a particular type of their parent.SyntaxThe syntax is as follows −:nth-of-type(n|even|odd|formula)Above, the n parameter is the index of each child to match. The even parameter selects even child element, whereas odd selects odd ... Read More

AmitDiwan
136 Views
The :nth-last-of-type() selector in jQuery is used to select all elements that are the nth child, counting from the last child.SyntaxThe syntax is as follows −:nth-last-of-type(n|even|odd|formula)Above, the n parameter is the index of each child to match. The even parameter selects even child element, whereas odd selects odd child element.ExampleLet us ... Read More

AmitDiwan
292 Views
The :nth-last-child() selector in jQuery is used to select all elements that are the nth child, counting from the last child.SyntaxThe syntax is as follows −:nth-last-child(n|even|odd|formula)Above, the n parameter is the index of each child to match. The even parameter selects even child element, whereas odd selects odd child element.ExampleLet ... Read More

AmitDiwan
578 Views
The :nth-child() selector in jQuery is used to select all elements that are the nth child, regardless of type, of their parent.SyntaxThe syntax is as follows −:nth-child(n|even|odd|formula)Above, the n parameter is the index of each child to match. The even parameter selects even child element, whereas odd selects odd child ... Read More

AmitDiwan
223 Views
The nextUntil() method in jQuery is used to return all next sibling elements between the selector and stop.SyntaxThe syntax is as follows −$(selector).nextUntil(stop, filter)Above, the stop parameter is to mention the expression to stop the search for next matching sibling elements and the filter parameter is a selector expression to ... Read More

AmitDiwan
127 Views
The :not selector in jQuery is used to select all elements except the specified element.SyntaxThe syntax is as follows −$(":not(selector)")Above, set the element which is to be ignored (not selected).ExampleLet us now see an example to implement the jQuery :not Selector − .one { ... Read More

AmitDiwan
116 Views
The :It selector in jQuery is used to select elements with an index number less than a specified number.SyntaxThe syntax is as follows −$(":lt(index)")With the index parameter, you can set which element to select.ExampleLet us now see an example to implement the jQuery :It Selector − ... Read More

AmitDiwan
164 Views
The :last-of-type selector in jQuery is used to select all elements that are the last child of a particular type of their parent.SyntaxThe syntax is as follows −$(":last-of-type")ExampleLet us now see an example to implement the jQuery :last-of-type Selector − .one { color: ... Read More

AmitDiwan
318 Views
The :last-child selector in jQuery is used to select all elements that are the last child of their parent.SyntaxThe syntax is as follows −$(":last-child")ExampleLet us now see an example to implement the jQuery :last-child Selector − .one { color: white; ... Read More