Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this var in my code:

var href = $(this).attr('href'),
str = href.split('/').slice(-2,-1)[0];

How do I check if 'images', 'images-2' or 'images-3' matches the 'href' string, then do something..

share|improve this question

2 Answers

up vote 3 down vote accepted
if href.match(/images(-[23])?/){
    doStuf();
}

should do the trick.

share|improve this answer
2  
I'd make that a non-capturing group (?:) though. But that's the correct regular expression. – Robert Koritnik Nov 30 '10 at 16:10

Take a look at this: http://api.jquery.com/category/selectors/

You can have something like: $('[href^="images"]')

Edit: You can also make your own selectors if you want to. http://dpatrickcaldwell.blogspot.com/2010/03/custom-jquery-selector-for-external-and.html

James Padolsey has already written one that could work for you. http://james.padolsey.com/javascript/regex-selector-for-jquery/

share|improve this answer
AFAICT, the OP doesn't know that the href will start with images, just that it will contain images. jQuery selector is a good way to go though if he knows enough about it to go that way. – jxpx777 Nov 30 '10 at 16:14
jxpx777, I agree, but I don't know that it means you shouldn't use what's there. The ~= is the contains selector. It'd also work in this case if the name doesn't start with image. Edit: Evidently, enter doesn't do what I think it does in these input boxes :). api.jquery.com/attribute-contains-word-selector – D. Patrick Nov 30 '10 at 16:18
The other thing is that it doesn't allow to limit to just images, images-2, images-3. ~= images would still capture images-12, which a strict reading of the OP would deem unacceptable. – jxpx777 Nov 30 '10 at 16:21
Perhaps, but if that were the case, I'd say you'd need a pretty good reason to do it via javascript at all instead of just adding a class and using CSS. My guess is that the op is looking for a way of matching patterns in the jquery selector. It may not be the case. I'm just putting the information out there. If you feel like my answer doesn't add value, feel free to downvote. I'm just tryin' to help. – D. Patrick Nov 30 '10 at 16:25
I would have been more clear if I had known at the time. It's 'images' in sequence, so in this case, it works perfectly if it catches 'images-12', but thanks for letting me know. – PHearst Dec 1 '10 at 0:12

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.