Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

what does this jquery selector means $("*[regex]")

I want to select all controls which have an attribute regex.

share|improve this question

1 Answer

up vote 4 down vote accepted

It's selecting all elements with a regex= attribute (that it's present, it can be empty).

Though, the all selector can be implied, it can just be:

$("[regex]")

Both are very inefficient though it would be better to add the element type or anything to narrow it down before looking for attributes.

share|improve this answer
If I want to have a selector which have regex= and error= both attributes together – vaibhav Oct 11 '10 at 12:49
@vaibhav - Add them beside each other without a space to only select elements that have both: $("[regex][error]"). – Nick Craver Oct 11 '10 at 12:50
@vaibhav: you can chain strings together like $('[regexp][error]') – jAndy Oct 11 '10 at 12:50
seriously, do you have a script or something that autorefreshes stackoverflow all the time? :p – jAndy Oct 11 '10 at 12:51
@jAndy - the notification icon in the toolbar (The stackexchange one) is instant how, so I see replies quicker than before it was added, yes :) – Nick Craver Oct 11 '10 at 12:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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