jQuery
HTML
CSS
JavaScript
PHP
SQL
WordPress
jQuery Tutorials

Overview

jQuery has numerous built-in selectors that make it easy to access HTML elements. Some are actually quite descriptive in their ability to narrow down the selection (e.g., target only form elements that are disabled).

The following are some common examples of selectors often used to target page elements. A complete list of jQuery selectors can be found here along with more detailed descriptions of their intended use and syntax.

Basic Syntax

The basic syntax is: $(selector).action()

  • The $ sign defines that jQuery is to be used
  • A (selector) is used to target the HTML element(s)
  • A jQuery action() is specified to be performed on the selected element(s)

The following uses an element selector to target all paragraphs. It will “hide” from view all HTML paragraphs on the page.

				
					$('p').hide()
				
			

* Selector

The * selector selects all HTML elements in the document, and if used together with another element can be used to select all that element’s child elements.

				
					// selects all elements
$('*')
				
			

class Selector

The .class selector selects all HTML elements with a specific class, which may include multiple elements on the page.

				
					// selects all HTML elements with the class of .my_paragraphs
$('.my_paragraphs')
				
			

Element Selector

The element selector selects all HTML elements with a specific element tag name.

				
					// selects all HTML paragraphs
$('p')
				
			

#ID Selector

The #id selector selects an HTML element with a specific id. HTML only allows for one unique #id per document.

				
					// selects the HTML element with the id of #intro
$('#intro')
				
			

We’d like to acknowledge that we learned a great deal of our coding from W3Schools and TutorialsPoint, borrowing heavily from their teaching process and excellent code examples. We highly recommend both sites to deepen your experience, and further your coding journey. We’re just hitting the basics here at 1SMARTchicken.

jQuery
HTML
CSS
JavaScript
PHP
SQL
WordPress

Why 1SMARTchicken?

This site was built and is maintained to benefit my autistic son.
See More →

My Son's Name is Johnny

He was diagnosed as autistic quite late, at age four...
His story

Buy Me a Coffee

Thanks for your support!

Feedback

If you see an error on the page or the code itself is incorrect or incomplete, or just plain wrong, please let us know. We’re always learning. NOTE: we do not sell your information and will not send you spam emails.