Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
3answers
590 views

What useful custom jQuery selectors have you written?

For me, one of the best, yet under-utilised feature of jQuery is the custom selector. I have a fairly trivial example of this, to pick out all text boxes that are empty: $(document).ready(function() ...
4
votes
1answer
94 views

What is the Relative Performance of Pseudo-Class and Custom Selectors?

It's my understanding that, in terms of selector speed, that #ID selectors are fastest, followed by element selectors, and then .class selectors. I have always assumed that pseudo-class selectors and ...
2
votes
3answers
156 views

Client-Side Table Filtering

As the title states. I'm using jQuery to do the magic. I've used a custom Contains extension to the selectors as follows: jQuery.expr[':'].Contains = function(a, i, m) { return ...
0
votes
1answer
84 views

jquery: custom selector not working

I am trying to create a custom jquery selector to return the bool of css("visibility") == "inherit" but it doesn't seem to be working. Below is the code... $.expr[":"].crazyvisible = function(a) { ...
0
votes
1answer
52 views

jQuery custom filter problem: element stack is way too much

I am trying to implement ":random" selector which selects a random element from a stack of elements. Here's the code: http://jsfiddle.net/nuSWF/ The problem is the selector sometimes tries to select ...