20
votes
5answers
10k views
JQuery selector regular expressions
I am after documentation on using wildcard or regular expressions (not sure on the exact terminology) with the jquery selector.
I have looked for this myself but have been unable to find information …
17
votes
9answers
2k 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 …
10
votes
5answers
3k 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 …
8
votes
3answers
183 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?
8
votes
5answers
3k 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?
6
votes
1answer
246 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 …
6
votes
2answers
2k views
jQuery: exclude $(this) from selector. [closed]
Hi.
I have something like this:
<div class="content">
<a href="#">A</a>
</div>
<div class="content">
<a href="#">B</a>
</div>
<div …
6
votes
4answers
9k views
count immediate child div elements using jQuery
Hi,
I have the following HTML node structure:
<div id="foo">
<div id="bar"></div>
<div id="baz">
<div id="biz">
</div>
<span><span>
…
6
votes
2answers
393 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!
5
votes
2answers
2k views
attributes not found by jquery attribute selector
I need to reask my old question, I probably shouldnt have asked it at 1am :P
It seems that some attributes are not being found using jquery's attribute selector:
$("*[some=value]");
So far it …
5
votes
3answers
1k 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, …
4
votes
3answers
257 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];
4
votes
1answer
113 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.
…
4
votes
3answers
276 views
jquery selectors for plain javascript objects instead of DOM elements
I've just started using jquery and I'm really enjoying using selectors. It occurs to me that the idiom would be a very nice way to traverse object trees (e.g., JSON query results). For example, if I …
4
votes
3answers
552 views
Jquery multiple class selector
Hi guys,
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.
