up vote 98 down vote favorite
46
share [g+] share [fb]

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 the syntax and how to use it. Does anyone know where the documentation for the syntax is?

EDIT: The attribute filters allow you to select based on patterns of an attribute value.

link|improve this question

10  
This question is famous! blog.stackoverflow.com/2009/05/… – ine May 7 '09 at 19:11
What does it have to see with the current answer? – jaime Jul 16 '11 at 2:34
feedback

4 Answers

up vote 75 down vote accepted

James Padolsey created a wonderful filter that allows regex to be used for selection.

Say you have the following div:

<div class="asdf">

Padolsey's :regex filter can select it like so:

$("div:regex(class, .*sd.*)")

Also, check the official documentation on selectors.

link|improve this answer
1  
Ok. I have been there but I didn't really know the name of what I was looking for. Ive had another look and using attribute filters is what I was after. – Joel Cunningham Oct 10 '08 at 5:49
excellent resource! – iamserious Mar 14 '11 at 15:56
The regex selector by @padolsey works great. Here's an example where you can iterate over text, file and checkbox input fields or textareas with it: $j('input:regex(type, text|file|checkbox),textarea').each(function(index){ // ... }); – Matt Setter Jan 6 at 11:41
feedback

You can use the filter function to apply more complicated regex matching. Here's an example which would just match the first three divs.

<div id="abcd"></div>
<div id="abccd"></div>
<div id="abcccd"></div>
<div id="abd"></div>
$('div')
    .filter(function() {
        return this.id.match(/abc+d/);
    })
    .html("Matched!")
;
link|improve this answer
14  
+1 for a straightforward solution that doesn't require an additional library/plugin. – maerics Jun 3 '11 at 4:19
2  
3 years late here, but I was just looking up jQuery wildcards and found this incredibly helpful. I hate loading hundreds of libraries when it can be avoided. That's the whole reason I went with jQuery in the first place, was to incorporate all the functionality I could ever want in a few simple and powerful functions. – stevendesu Aug 30 '11 at 1:10
Awesome solution. Thanks! – dex3703 Oct 31 '11 at 19:30
feedback
$("input[name='option[colour]'] :checked ")
link|improve this answer
feedback

ids and classes are still attributes, so you can apply a regexp attribute filter to them if you select accordingly. Read more here: http://rosshawkins.net/archive/2011/10/14/jquery-wildcard-selectors-some-simple-examples.aspx

link|improve this answer
The link on this answer is dead. – jerseyboy Dec 2 '11 at 18:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.