Top "Jquery-selectors" questions

Selectors can be used in jQuery to match a set of elements in a document.

How can I select an element with multiple classes in jQuery?

I want to select all the elements that have the two classes a and b. <element class="a b"&…

jquery jquery-selectors
jQuery to loop through elements with the same class

I have a load of divs with the class testimonial and I want to use jquery to loop through them …

javascript jquery jquery-selectors
Set selected option of select box

I want to set a option that was selected previously to be displayed on page load. I tried it with …

jquery html jquery-selectors html-select
Testing if a checkbox is checked with jQuery

If the checkbox is checked, then I only need to get the value as 1; otherwise, I need to get it …

javascript jquery checkbox jquery-selectors
How to get all options of a select using jQuery?

How can I get all the options of a select through jQuery by passing on its ID? I am only …

javascript jquery jquery-selectors
Selecting and manipulating CSS pseudo-elements such as ::before and ::after using javascript (or jQuery)

Is there any way to select/manipulate CSS pseudo-elements such as ::before and ::after (and the old version with one …

javascript jquery css jquery-selectors pseudo-element
jQuery selectors on custom data attributes using HTML5

I would like to know what selectors are available for these data attributes that come with HTML5. Taking this piece …

javascript jquery jquery-selectors custom-data-attribute
document.getElementById vs jQuery $()

Is this: var contents = document.getElementById('contents'); The same as this: var contents = $('#contents'); Given that jQuery is loaded?

javascript jquery jquery-selectors
jQuery: Get selected element tag name

Is there an easy way to get a tag name? For example, if I am given $('a') into a function, …

javascript jquery jquery-selectors
jQuery Set Select Index

I have an select box: <select id="selectBox"> <option value="0">Number 0</option> <option …

jquery jquery-selectors