Skip to content
Tutorialdeep

Tutorialdeep

  • Recommended Tools
  • Start a Blog
  • FREE Blog Setup
  • HTML
  • CSS
  • jQuery
  • Bootstrap
  • PHP
  • SQL
  • Python
  • Java
  • MS Word
  • MS Excel
  • Forms

Category Archives: jQuery Selectors

jQuery All Selector (“*”) View More

The jQuery all selector selects every element of the HTML page. If you want to apply color to all the …

Continue reading “jQuery All Selector (“*”)”

jQuery .class Selector View More

A jQuery .class selector selects all the elements for the specified class name. You can apply CSS or any other …

Continue reading “jQuery .class Selector”

jQuery #id Selector View More

A jQuery #id selector selects elements with the id you have specified. After you select the required element, you can …

Continue reading “jQuery #id Selector”

jQuery Child Element Selector View More

When you want to apply the style to the child element of the list, div, etc. jQuery child element selector …

Continue reading “jQuery Child Element Selector”

jQuery :animated Selector View More

When you want to select all the animated elements on a single page, you have to use the jQuery :animated …

Continue reading “jQuery :animated Selector”

jQuery :even Selector View More
jquery-even-selector

The jQuery :even selector selects the even elements of the matching tag name of HTML. The tag name elements can …

Continue reading “jQuery :even Selector”

jQuery :first Selector View More

The jQuery :first selector select only the first matching item of the group element. The group element can be a …

Continue reading “jQuery :first Selector”

jQuery :eq() Selector View More

The jQuery :eq() selector selects the group elements at index n. Each group element starts with an index value 0. …

Continue reading “jQuery :eq() Selector”

jQuery :gt() Selector View More

The jQuery :gt() Selector select the elements greater than the specified index value. It applies the jquery to all the …

Continue reading “jQuery :gt() Selector”

jQuery :last Selector View More

The jQuery :last selector selects the last element in a group. If you want to apply jQuery to the last …

Continue reading “jQuery :last Selector”

jQuery :lt() Selector View More

The jQuery :lt() selector selects the items of group element less than the specified index number. Each item of a …

Continue reading “jQuery :lt() Selector”

jQuery :odd Selector View More
live demo of jquery odd selector

The jQuery :odd selector selects the odd items from the group element. The group element can be a table, list, …

Continue reading “jQuery :odd Selector”

jQuery :not Selector View More

The jQuery :not selector selects all the elements which are not specified. It can be useful when you want to …

Continue reading “jQuery :not Selector”

jQuery :contains() Selector View More

The jQuery :contains() selector selects the elements containing the specified matching text content. It can be useful when you want …

Continue reading “jQuery :contains() Selector”

jQuery :empty Selector View More

The jQuery :empty selector selects all the elements which are empty and contains no child items. If you want to …

Continue reading “jQuery :empty Selector”

jQuery :has() Selector View More

The jQuery :has() selector select the elements that contain one or more matching specified element inside them. If you want …

Continue reading “jQuery :has() Selector”

jQuery :parent Selector View More

The jQuery :parent selector selects all the elements containing at least one element or text content. If you want to …

Continue reading “jQuery :parent Selector”

jQuery :hidden Selector View More

The jQuery :hidden selector select all the hidden elements by considering any of the below situations: Element is set to …

Continue reading “jQuery :hidden Selector”

jQuery :visible Selector View More
jQuery Visible Selector Image

The jQuery :visible selector selects all the visible elements by not considering the below conditions.. The element which are set …

Continue reading “jQuery :visible Selector”

jQuery :first-child Selector View More
Live demo for jquery :first-child selector

The jQuery :first-child selector select all the items that are the first child of its parent. If you use it …

Continue reading “jQuery :first-child Selector”

jQuery :first-of-type Selector View More
jQuery :first-of-type selector

The jQuery :first-of-type selector selects all the elements that are the first among the sibling of the same parent element. …

Continue reading “jQuery :first-of-type Selector”

jQuery :last-child Selector View More
jQuery :last-child selector

The jQuery :last-child selector selects all the items that are the last child of the parent element. The parent elements …

Continue reading “jQuery :last-child Selector”

jQuery :last-of-type Selector View More
live demo jquery last of type selector

The jQuery :last-of-type selector selects all the elements which are the last child of matching type of its parent. The …

Continue reading “jQuery :last-of-type Selector”

jQuery :nth-child() Selector View More
jQuery nth-child Selector image

The jQuery nth-child() selector selects all the elements for the specified nth-child of the parent. By using the selector, you …

Continue reading “jQuery :nth-child() Selector”

jQuery :nth-last-child() Selector View More
jquery :nth-last-child selector

The jQuery :nth-last-child() selector selects all the child elements that are the nth-child of their parents. It selects the elements …

Continue reading “jQuery :nth-last-child() Selector”

jQuery :nth-last-of-type() Selector View More
jQuery :nth-last-of-type Selector

The jQuery :nth-last-of-type() selector selects all child items of their parent with matching element type. You have to specify the …

Continue reading “jQuery :nth-last-of-type() Selector”

jQuery :nth-of-type() Selector View More
jquery nth-of-type selector

The jQuery :nth-of-type() Selector selects all the items of their parent of the specified element type. You can select the …

Continue reading “jQuery :nth-of-type() Selector”

jQuery :only-child Selector View More
jQuery :only-child Selector

The jQuery :only-child selector selects all the elements that are the only child matching of its parent. If the parent …

Continue reading “jQuery :only-child Selector”

jQuery :only-of-type Selector View More
jQuery :only-of-type selector

The jQuery :only-of-type selector selects all the elements of only of matching type of its parent. If the parent element …

Continue reading “jQuery :only-of-type Selector”

jQuery :button Selector View More
jQuery :button Selector

The jQuery :button selector selects the HTML button element and the input type=”button” element. We don’t need to use the …

Continue reading “jQuery :button Selector”

jQuery :checkbox Selector View More
jQuery :checkbox selector

The jQuery :checkbox selector selects the checkboxes in a form. You have to use the checkboxes to provide the options …

Continue reading “jQuery :checkbox Selector”

jQuery :checked Selector View More
jQuery :checked Selector

The jQuery :checked selector selects the checkboxes and the radio button options if checked. Both are the elements come inside …

Continue reading “jQuery :checked Selector”

jQuery :disabled Selector View More
jquery-disabled-selector

The jQuery :disabled selector selects all the disabled elements in a form. You can apply the CSS and other effects …

Continue reading “jQuery :disabled Selector”

jQuery :enabled Selector View More
jquery-enabled-selector

The jQuery :enabled Selector selects all the elements that are enabled in a form. By default, all the elements of …

Continue reading “jQuery :enabled Selector”

jQuery :focus Selector View More
jquery-focus-selector

The jQuery :focus selector selects all the elements that are currently focused on. There are many elements inside the form. …

Continue reading “jQuery :focus Selector”

jQuery :file Selector View More
jquery-file-selector

The jQuery :file Selector selects all the elements with the input type=”file” attribute. This is the file uploads in a …

Continue reading “jQuery :file Selector”

jQuery :image Selector View More
jquery-image-selector

The jQuery :image Selector selects all the input type=”image” elements in a form. The input type image defines the submit …

Continue reading “jQuery :image Selector”

jQuery :input Selector View More
jquery-input-selector

The jQuery :input selector selects all the input type elements in a form. It selects every input elements including textarea, …

Continue reading “jQuery :input Selector”

jQuery :password Selector View More
jquery password selector

The jQuery :password selector select all the input type password elements in a form. This can be useful when you …

Continue reading “jQuery :password Selector”

jQuery :radio Selector View More
jquery-radio-selector

The jQuery :radio selector selects all the input type radio elements in a form. A radio button is used in …

Continue reading “jQuery :radio Selector”

jQuery :reset Selector View More
jquery-reset-selector

The jQuery :reset selector selects all the input type reset elements in a form. A reset button is used in …

Continue reading “jQuery :reset Selector”

jQuery :selected Selector View More
jquery-selected-selector

The jQuery :selected selector select the select box options which are selected. It works only on the select box options …

Continue reading “jQuery :selected Selector”

jQuery :submit Selector View More
jquery-submit-selector

The jQuery :submit selector selects all the elements with type=”submit” attribute. These are the attributes of the input and the …

Continue reading “jQuery :submit Selector”

jQuery :text Selector View More

The jQuery :text selector selects all the input type text elements in a form. When you want to get user …

Continue reading “jQuery :text Selector”

jQuery removeAttr() method View More
jquery-removeattr-method

The jQuery removeAttr() method can be used to remove the attributes from the selected elements. You can remove single or …

Continue reading “jQuery removeAttr() method”


TutorialDeep logo

Follow Us

  • Blog
  • Deal
  • What Is
  • How To
  • Reviews
  • HTML Reference
  • CSS Property
  • jQuery Reference
  • HTML Attributes
  • MS Excel Functions
Tutorialdeep Copyright © 2025 Privacy Policy
  • Terms of Use
  • Sitemap
  • About
  • FTC Disclosure
  • Contact