vote up 19 vote down star
10

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 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.

flag

2  
This question is famous! blog.stackoverflow.com/2009/05/… – amdfan May 7 at 19:11

5 Answers

vote up 20 vote down check

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|flag
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
vote up 0 vote down

I have some input options like so:

<input type="checkbox" name="option[colour]" value="blue"/>
<input type="checkbox" name="option[colour]" value="red"/>
<input type="checkbox" name="option[colour]" value="green"/>
<input type="checkbox" name="option[colour]" value="kawasaki"/>

I'm desperately trying to select any that are checked. This won't work because of the square brackets:

j("input[name=option[colour]]:checked");

Any ideas?

Thanks,

Rich

link|flag
3  
Richard you need to ask a New Question. No one will see this question at the bottom of a previously answered question. – Joel Cunningham Jun 13 at 0:13
vote up 4 vote down

After a while you get to understand that jQuery allows the use of regular expressions in a lot of places, I.E. when selecting like this:

$('#myElement').html();

So with this in mind, you can use \S* to make wildcard selections, I.E.:

$('#myEle\\S*').each();

From: http://colourgray.wordpress.com/2008/08/05/jquery-wildcard-selectors/

link|flag
wildcards are very cool but they aren't quite "regular expressions" – Jeff Atwood May 7 at 8:24
That site says the wildcards don't work anymore – fudgey Oct 8 at 4:59
vote up 23 vote down

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|flag
vote up 1 vote down

I don't think there is such a thing as wildcard or regex selectors in jQuery, but you shouldn't need them. I'd suggest getting a good grasp on the way CSS selectors work and what you can do with inheritance, attribute filters, and so on.

link|flag

Your Answer

Get an OpenID
or

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