Tagged Questions

Selectors that can be used in the jQuery JavaScript library to match a set of elements in a document. Some of them are borrowed from CSS 1–3.

learn more… | top users | synonyms (1)

127
votes
10answers
102k views

How can I get which radio is selected via jQuery?

I have two radio buttons and want to post the value of the selected one, how can I get the value with jQuery? I can get all of them like this: $("form :radio") But how do I know which one is ...
98
votes
4answers
77k views

jQuery selector regular expressions

I am after documentation on using wildcard or regular expressions (not sure on the exact terminology) with a jQuery selector. I have looked for this myself but have been unable to find information on ...
66
votes
5answers
47k views

jQuery delete all table rows except first

Using jQuery, how do I delete all rows in a table except the first? This is my first attempt at using index selectors. If I understand the examples correctly, the following should work: $(some ...
54
votes
7answers
24k views

jQuery Selector: Id Ends With?

Is there a selector that I can query for elements with an ID that ends with a given string? Say I have a element with an id of "ctl00$ContentBody$txtTitle". How can I get this by passing just ...
43
votes
13answers
1k views

Why doesn't jQuery bomb if your selector object is invalid?

Was recently using some code along the lines of $("#divMenuContainer:visible").hide("explode"); However after some time spent trying to get it to work I realized my selector was referencing a div ...
40
votes
2answers
1k views

What is the fastest method for selecting descendant elements in jQuery?

As far is I know, there are a number of ways of selecting child elements in jQuery. //Store parent in a variable var $parent = $("#parent"); Method 1 (by using a scope) $(".child", ...
32
votes
3answers
1k views

Most appropriate way to get this: $($(“.answer”)[0])

Suppose I want to get the first element amongst all the elements of the class ".answer" $($(".answer")[0]) I can do the above, but what is the best balance between elegance and speed? *changed the ...
27
votes
7answers
5k views

document.getElementById vs jQuery

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

jQuery: exclude $(this) from selector

I have something like this: <div class="content"> <a href="#">A</a> </div> <div class="content"> <a href="#">B</a> </div> <div ...
24
votes
1answer
9k views

jQuery OR Selector?

I am wondering if there is a way to have "OR" logic in jQuery selectors. For example, I know an element is either a descendant of an element with class classA or classB, and I want to do something ...
22
votes
4answers
19k views

jquery checkbox value

If the checkbox values is checked then only i need to get the value as 1 else i need to get it as 0 ,how to do this using jquery $("ans").val() will always give me one right in this case <input ...
19
votes
7answers
23k views

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? Edit: Only looking to get their values, not the text
17
votes
8answers
2k views

jQuery: How to select “from here until the next H2”?

I'm setting up a very straightforward FAQ page with jQuery. Like so: <h2>What happens when you click on this question?</h2> <p>This answer will appear!</p> This is all ...
15
votes
2answers
245 views

jQuery selector optimization

Be specific on the right-hand side of your selector, and less specific on the left. // unoptimized $('div.data .gonzalez'); // optimized $('.data td.gonzalez'); Quote Source Could someone ...
15
votes
3answers
6k views

jquery data selector

I need to select elements based on values stored in an element's .data() object. At a minimum, I'd like to select top-level data properties using selectors, perhaps like this: ...
14
votes
1answer
4k views

Jquery selectors on custom data attributes on HTML5

I would like to know what selectors i have available for this data attributes that comes with HTML5. Taking this piece of HTML as sample: <ul data-group="Companies"> <li ...
13
votes
5answers
597 views

Best practice for CSS class naming for use with jQuery selectors

While building a Javascript-heavy web application, what is the best practice for naming CSS classes to keep the Javascript code and CSS stylesheets clean and the UI structure flexible? Option 1: ...
13
votes
6answers
152 views

How to get the text of a div which is not a part of any other container in JQuery?

This should be real easy. Given below is the HTML. <div id='attachmentContainer'> #Attachment# <span id='spnAttachmentName' class='hidden'>#AttachmentName#</span> ...
13
votes
7answers
4k views

Is there a 'has focus' in JavaScript (or jQuery)?

Is there something I can do like this (perhap via a plugin) if ( ! $('form#contact input]').hasFocus()) { $('form#contact input:first]').focus(); } Basically, set focus to the first input, but ...
13
votes
3answers
2k views

:nth-of-type() in jQuery / Sizzle?

It surprised me that Sizzle (the selector engine jQuery uses) comes with a built-in :nth-child() selector, but lacks an :nth-of-type() selector. To illustrate the difference between :nth-child() and ...
12
votes
6answers
586 views

Which is more efficient: .parent().parent().parent() ~or~ parents(“.foo”) ~or~ closest(“.foo”)

I have an A tag which triggers the animation of it's great-great-great-grandparent. All of the following will work, but which is most efficient, and why? ...
11
votes
5answers
182 views

Why “select” options are hidden?

I have a HTML select like this: <select name="something"> <option value="a">1</option> <option value="b">2</option> <option value="c">3</option> ...
11
votes
3answers
6k views

Wildcards in jQuery selectors

I'm trying to use a wildcard to get the id of all the elements whose id begin with "jander". I tried $('#jander*'), $('#jander%') but it doesn't work.. I know I can use classes of the elements to ...
11
votes
7answers
301 views

What's the difference between $(this) and this in jQuery?

What's the difference between $(this) and this in jQuery, and why do they sometimes give the same result and other times behave differently?
10
votes
4answers
149 views

jQuery elements fail to select parent()

It seems elements selected using :contains(sub) with sub containing < or > cannot get to their parents. The following example should illustrate the problem I'm having in both Safari and Camino ...
10
votes
4answers
3k views

jQuery scrollTop not working in chrome but working in Firefox

I have used a scrollTop function in jquery for navigating to top. But strangely 'The smooth animated scroll' stopped working in safari and chrome(scrolling without smooth animation) after I made some ...
10
votes
3answers
6k views

jQuery :contains selector to search for multiple strings

Assuming i have: <li id="1">Mary</li> <li id="2">John, Mary, Dave</li> <li id="3">John, Dave, Mary</li> <li id="4">John</li> If i need to find all ...
10
votes
1answer
3k views

jQuery select all except first

In jQuery how do I use a selector to access all but the first of an element? So in the following code only the second and third element would be accessed. I know I can access them manually but there ...
9
votes
3answers
133 views

Select numbers on a page with jQuery or Javascript

I'm just wondering if there's a way to locate numbers on a page with jQuery or plain Javascript. Here's what I want to do: Say "June 23" is on the page. What I want to do is be able to prepend and ...
9
votes
3answers
101 views

jQuery class selector performance (confused)

So is $('table.selectable td.capable input:text') preferable to $('table.selectable td input:text')? In other words, does specifying a class speed up or slow down the selection (assuming it isn't ...
9
votes
3answers
243 views

How do I select the next “n” elements starting from the current element in jQuery?

How do I select the next "n" elements starting from the current element? What I mean is... $(this).attr(...); I want to do this "n" times. For the example of n=4: $(this).attr(...); ...
9
votes
1answer
492 views

jQuery selector problem. :last-child not doing what I need

What jQuery selector would allow me to select the last <td> in a <tr> that has more than 1 <td>? NOTE: I am trying to find an answer which will allow me to use a single selector or a ...
9
votes
3answers
9k views

Hide all but $(this) via :not in jQuery selector

Advanced title, simple question: How to do the following in jQuery: $("table tr").click(function() { $("table tr:not(" + $(this) + ")").hide(); // $(this) is only to illustrate my problem ...
9
votes
5answers
8k views

How do I get a jQuery selector's expression as text?

I have a jQuery selector, which has a chained function. Inside the function I want to get access to the TEXT representing the expression for the selector. $("cat dog").function() { // how do I ...
8
votes
4answers
274 views

Remove li tags using javascript array

I'm searching a solution to remove <li> tags filtered using javascript array. Array: var mygroups=["1","8","3","4","5"] Example (input): <li><div>1 ...
8
votes
5answers
2k views

jQuery function to get all unique elements from an array?

http://api.jquery.com/jQuery.unique/ lets you get unique elements of an array, but the docs say the function is mostly for internal use and only operates on DOM elements. Another SO response said the ...
8
votes
2answers
462 views

Efficient, concise way to find next matching sibling?

Sticking to the official jQuery API, is there a more concise, but not less efficient, way of finding the next sibling of an element that matches a given selector other than using nextAll with the ...
8
votes
5answers
2k views

jQuery : eq() vs get()

I'm new to jQuery, and I'm wondering what the difference is between jQuery's get() and eq() functions. I may misunderstand what the get() function does, but I thought it odd that I couldn't call a ...
8
votes
4answers
217 views

Assign click handlers in for loop

I'm having several div's #mydiv1, #mydiv2, #mydiv3, ... and want to assign click handlers to them: $(document).ready(function(){ for(var i = 0; i < 20; i++) { $('#question' + i).click( ...
8
votes
3answers
814 views

How can I get the corresponding table header (th) from a table cell (td)?

Given the following table, how would I get the corresponding table header for each td element? <table> <thead> <tr> <th id="name">Name</th> ...
8
votes
3answers
206 views

jquery child selector without parent

I was looking at some code from a tutorial for creating a carousel menu and noticed parent child selectors without the parent. Never seen this before, and confused to what it is actually doing. See ...
8
votes
4answers
183 views

Multiple selectors or multiple functions - any efficiency gains?

I'm wondering if its possible to make the following code more concise: $('#americasTrigger').hover( function () { $('#americasImg').fadeIn() }, function(){ ...
8
votes
3answers
399 views

Are there any jquery features to query multi-dimensional arrays in a similar fashion to the DOM?

What the question says... Does jQuery have any methods that will allow you to query a mult-dimensional array of objects in a similar fashion as it does with the DOM. So for instance, get me a list ...
8
votes
3answers
4k views

jQuery: select all inputs with unique id (Regex/Wildcard Selectors)

I have some textboxes on a webform that have ids like this: txtFinalDeadline_1 txtFinalDeadline_2 txtFinalDeadline_3 txtFinalDeadline_4 In my jQuery how do I find all of those in order to assign a ...
8
votes
1answer
5k views

Check if value is in select list with JQuery

How can I, using JQuery, check if a value belongs to dropdown list or not? Thanks in advance.
8
votes
5answers
2k views

jquery, performance-wise what is faster getElementById or jquery selector?

What is better from performance wise document.getElementById('elementId') or $('#elementId') ? How can I calculate the speed by myself?
8
votes
3answers
2k views

Can you do an 'AND' on a jQuery selector to target multiple buttons?

I have two types of buttons that I want to use the same code block. Rather than create two event handlers is it possible to reference the buttons by doing something like this: $(".lb",".da") I've ...
8
votes
2answers
5k views

Selecting elements with a certain background color

I want to select a bunch of spans in a div whose CSS contains a particular background color. How do I achieve this?
7
votes
3answers
135 views

jQuery.attr() works fine on Google Chrome and IE, but fails on Firefox 8.0.1

I'm facing a curious behavior of Firefox 8.0.1 : this piece of code works fine on Google Chrome and in IE, but on Firefox it fails except if I run it in 'debug mode _ step by step' or if I put an ...
7
votes
1answer
58 views

Some questions about how jquery selectors traverse the dom

How do I know what traverses the DOM and what doesn't? $('div p') It seems like this returns all the div elements AND THEN does another scan for P elements on each dom element that was returned in ...

1 2 3 4 5 65