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 10740 Articles
AmitDiwan
189 Views
The :root selector in jQuery is used to select the document's root element.SyntaxThe syntax is as follows −$(":root")ExampleLet us now see an example to implement the jQuery :root selector − $(document).ready(function(){ $(":root").css("color", "red"); }); Heading One Heading Two ... Read More
AmitDiwan
259 Views
The :reset selector in jQuery is used to select button and input elements with type reset.SyntaxThe syntax is as follows −$(":reset")ExampleLet us now see an example to implement the jQuery :reset selector − .one { background-color: blue; color: white; ... Read More
AmitDiwan
248 Views
The :radio selector in jQuery is used to select input elements with type radio.SyntaxThe syntax is as follows −$(":radio")ExampleLet us now see an example to implement the jQuery :radio selector − $(document).ready(function(){ $(":radio").wrap(""); }); Register Username: ... Read More
AmitDiwan
157 Views
The :password selector in jQuery is used to select input elements with type password.SyntaxThe syntax is as follows −$(":password")ExampleLet us now see an example to implement the jQuery :password selector − .one { background-color: blue; color: white; ... Read More
AmitDiwan
202 Views
The :parent selector in jQuery is used to select all elements that are the parent of another element.SyntaxThe syntax is as follows −$(":parent")ExampleLet us now see an example to implement the jQuery :parent selector − .one { background-color: blue; color: ... Read More
AmitDiwan
155 Views
The :only-of-type selector in jQuery is used to select elements which are the only child of its type of its parent.SyntaxThe syntax is as follows −$(":only-of-type")ExampleLet us now see an example to implement the jQuery :only-of-type selector − .one { color: white; ... Read More
AmitDiwan
301 Views
The :only-child() selector in jQuery is used to select elements that is the only child of its parent.SyntaxThe syntax is as follows −$(":only-child")ExampleLet us now see an example to implement the jQuery :only-child() selector − .one { color: white; background-color: ... Read More
AmitDiwan
125 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
273 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
153 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