Tagged Questions
The selectors tag has no wiki summary.
138
votes
2answers
40k views
jQuery multiple class selector
I want to select all the elements that have these two classes 'a' and 'b'.
So, only the elements that have both classes.
When I use $(".a, .b") it gives me union, but I want intersection.
61
votes
13answers
13k views
Good ways to improve jQuery selector performance?
I'm looking for any way that I can improve the selector performance of a jQuery call. Specifically things like this:
Is $("div.myclass") faster than $(".myclass")
I would think it might be, but I ...
55
votes
8answers
81k views
count immediate child div elements using jQuery
I have the following HTML node structure:
<div id="foo">
<div id="bar"></div>
<div id="baz">
<div id="biz">
</div>
<span><span>
...
45
votes
4answers
6k views
Why must the last part of an Objective-C method name take an argument (when there is more than one part)?
In Objective-C, you can't declare method names where the last component doesn't take an argument. For example, the following is illegal.
-(void)take:(id)theMoney andRun;
-(void)take:(id)yourMedicine ...
43
votes
4answers
16k views
How do I get jQuery to select elements with a . (period) in their ID?
Given the following classes and controller action method:
public School
{
public Int32 ID { get; set; }
publig String Name { get; set; }
public Address Address { get; set; }
}
public class ...
43
votes
6answers
51k views
How do you check if a selector exists in jQuery?
In Mootools, I'd just run if ($('target')) { ... }. Does if ($('#target')) { ... } in jQuery work the same way?
36
votes
5answers
16k views
Is there a case insensitive jQuery :contains selector?
Is there a case insensitive version of the :contains jQuery selector or should I do the work manually by looping over all elements and comparing their .text() to my string?
28
votes
7answers
38k views
Selectors in Objective C
First, I'm not sure I really understand what a selector is. From my understanding, it's a name of a method, and you can assign it to a class of type 'SEL' and then run methods such as ...
23
votes
4answers
12k views
Using -performSelector: vs. just calling the method
I'm still kind of new to Objective-C and I'm wondering what is the difference between the following two statements?
[object performSelector:@selector(doSomething)];
[object doSomething];
22
votes
7answers
16k views
Selecting empty text input using jQuery
How do I identify empty textboxes using jQuery? I would like to do it using selectors if it is at all possible. Also, I must select on id since in the real code where I want to use this I don't want ...
18
votes
4answers
3k views
how to create an “array of selectors” in objective-c
i'm using the iphone sdk (3.0) and i'm trying to create an array of selectors to invoke a variety of methods within one class.
Obviously, I'm doing something wrong (I think @selector isn't considered ...
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
3answers
2k views
How to select all anchor tags with specific text
Given multiple anchor tags:
<a class="myclass" href="...">My Text</a>
How do I select the anchors matching the class and with some specific text. eg Select all anchors with the ...
14
votes
6answers
11k views
Selecting only first-level elements in jquery
How can I select the link elements of only the parent <ul> from a list like this?
<ul>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a>
...
13
votes
3answers
323 views
Points in CSS specificity
Researching specificity I stumbled upon this blog - http://www.htmldog.com/guides/cssadvanced/specificity/
It states that specificity is a point-scoring system for CSS. It tells us that elements are ...
13
votes
3answers
5k views
cancelling queued performSelector:afterDelay calls
does anybody know if it is possible to cancel already queued selector events from the event stack or timer stack (or whatever mechanism it is that is utilized by the API) when you call ...
13
votes
3answers
10k views
Using “this” with jQuery Selectors
I have some HTML that looks like this:
<ul class="faq">
<li class="open">
<a class="question" href="">This is my question?</a>
<p>Of course you can, ...
12
votes
4answers
65k views
Jquery $(this) Child Selector
I'm using this on a page:
jQuery('.class1 a').click( function() {
if ($(".class2").is(":hidden")) {
$(".class2").slideDown("slow");
} else {
$(".class2").slideUp();
}
});
With a ...
12
votes
5answers
24k views
How to select an element that has focus on it with jQuery
How can you select an element that has current focus?
There is no :focus filter in jQuery, that is why we can use something like this:
$('input:focus').someFunction();
11
votes
3answers
14k views
Chaining selectors in jQuery
I'm a guy used to mootools' way of chaining selectors, and I can't seem to find anywhere how to do the same in jQuery.
Suppose I have a select element in the selectObj variable. What I need is to get ...
11
votes
3answers
906 views
How do you select elements based on their style?
Using jQuery, how would you find elements which have a particular style (eg: float: left), regardless of whether it's an inline style or one defined in a CSS file?
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
1k views
jQuery: Adding context to a selector is much faster than refining your selector?
I just noticed that adding context to the selector is much faster than refining your selector.
$('li',$('#bar')).append('bla');
Is twice as faster than:
$('#bar li').append('bla');
Is this ...
9
votes
6answers
211 views
CSS: Use tag type before ID?
One of the guys here at work puts the tag name in front of all his CSS selectors for element ids. For example:
div#footer {
}
This, as opposed to just:
#footer {
}
His rationale is that this ...
9
votes
3answers
1k views
Why does document.querySelectorAll return a StaticNodeList rather than a real Array?
It bugs me that I can't just do document.querySelectorAll(...).map(...) even in Firefox 3.6, and I still can't find an answer, so I thought I'd cross-post on SO the question from this blog:
...
9
votes
2answers
1k views
9
votes
4answers
39k views
jquery selector can't read from hidden field
(answers aggregated into another question)
The following jquery 1.3.2 code works:
<input type="select" value="236434" id="ixd" name='ixd' />
<script>
console.log( $('#ixd') );
...
9
votes
2answers
12k views
How do I use jQuery to ignore case when selecting?
I'm currently attempting to disable a link using the following jQuery selector:
$("a[href$=/sites/abcd/sectors]").removeAttr("href");
The problem is that sometimes the href might not always be ...
9
votes
5answers
8k views
jQuery: Can you select by CSS rule, not class?
A .container can contain many .components, and .components themselves can contain .containers (which in turn can contain .components etc. etc.)
Given code like this:
$(".container ...
8
votes
4answers
254 views
Most efficient way to re-use jQuery-selected elements
I can imagine the correct answer to this based on theory, but I'm just looking for some confirmation. I'm wondering what the most efficient way to re-use a jQuery-selected element is. For example:
...
8
votes
3answers
562 views
Use CSS selectors to collect HTML elements from a streaming parser (e.g. SAX stream)
How to parse CSS (CSS3) selector and use it (in jQuery-like way) to collect HTML elements not from DOM (from tree structure), but from stream (e.g. SAX), i.e. using sequential access event based ...
8
votes
2answers
1k views
CSS: Understanding the selector's priority / specificity
I'd like to understand how CSS selectors work with properties collisions, how a property is selected instead of another one?
div {
background-color:red;
}
div.my_class {
...
8
votes
2answers
3k views
Is there a way of selecting the last item of a list with CSS?
Say I have a list as follows:
item1
item2
item3
Is there a CSS selector that will allow me to directly select the last item of a list? In this case item 3.
Cheers!
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 ...
7
votes
1answer
4k views
jQuery how to find an element based on a data-attribute value?
I've got the following scenario:
var el = 'li';
and there are 5 <li>'s on the page each with a data-slide=number attribute (number being 1,2,3,4,5 respectively).
I now need to find the ...
7
votes
3answers
175 views
How do I optimize my stylesheet by removing unmatched and/or unnecessary CSS selectors
I have inherited a massive stylesheet with many thousand selectors and I'm certain that a good number of them are unnecessary and never actually match elements on the site. In the interests of ...
7
votes
3answers
366 views
jQuery Select All Elements That Have a Title
I need to apply a tooltip plugin to a bunch of different elements on my page. The only common property to work with a jQuery selector is that they all have a title property set.
I tried ...
7
votes
1answer
281 views
Is the vertical bar (|) valid CSS, or Firefox-specific?
I noticed this rule in Firebug:
*|*:link {
color:#0000EE;
}
I'm not sure that I've ever seen the vertical bar (|) before. It's in the about:PreferenceStyleSheet so it may be Firefox-specific.
...
7
votes
5answers
250 views
Is there an advantage to using very specific selectors in CSS?
I understand that in jQuery, it's advantageous to be more specific when using selectors so that jQuery doesn't have to traverse the entire DOM to find what you're looking for. For example, ...
7
votes
2answers
5k views
jQuery select elements on 1st “level”
I want to select only the elements on the first "level".
Ex:
<div id="BaseElement">
<p>My paragraph 0</p>
<div>
<span>My Span 0</span>
<span>My ...
7
votes
4answers
11k views
IE7 input:focus
I have the following CSS which isn't working in IE7.
input:focus{border-width: 2px;border-color: Blue; border-style: solid;}
Basically, I just want to set the border attributes when the input is ...
7
votes
6answers
13k views
jquery select divs with same id
hei guys
i want to select two divs with the same id in jquery. how do i do it?
i tried this and it did not work
jQuery('#xx').each(function(ind,obj){
//do stuff;
});
i have jquery countdown ...
7
votes
6answers
9k views
How to select first row of the first table in an html page using jQuery?
Suppose if I have multiple tables in my HTML page (without their 'id' attribute), so how can I select first row of the first table or any specific table using jQuery selectors?
7
votes
7answers
8k views
jquery - How to select all content between two tags
I have a document with headings and unordered lists.
How can I use JQuery to select a given heading (by its unique class name) AND all content between that heading and the next heading?
Update:
...
6
votes
2answers
239 views
querySelector search immediate children
I have some jquery-like function:
function(elem) {
return $('> someselector', elem);
};
The question is how can i do the same with querySelector()?
The problem is > selector in ...
6
votes
2answers
234 views
CSS attribute selectors: The rules on quotes (", ' or none?)
this question has been bugging me for a little while now. When writing a CSS selector that compares against an elements attribute like so.
a[rel="nofollow"]
I never know what I should be doing with ...
6
votes
1answer
2k views
How to convert “SEL” and “id” to NSString?
id parent;
SEL selector;
// lot's of code...
if ([parent respondsToSelector:selector]) {
}
else {
// This doesn't work:
NSString *errorMessage = [NSString stringWithFormat:@"%@ in class %@ ...
6
votes
2answers
720 views
select deepest child in jQuery
is there a cheep method to select the deepest child of an element ?
Example:
<div id="SearchHere">
<div>
<div>
<div></div>
</div>
</div>
...
6
votes
5answers
426 views
how do I select a div with class “A” but NOT with class “B”?
I have some divs:
<div class="A">"Target"</div>
<div class="A B">"NotMyTarget"</div>
<div class="A C">"NotMyTarget"</div>
<div class="A ...
6
votes
7answers
1k views
What's the best HTML attribute to use to store information for jQuery to parse?
Must Support IE6 and must Validate vs XHTML Strict 1.0!
This is tricky to explain...
I'm using a generic class name to initiate a plugin feature on an associated element.
I also want to have ...