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..
|
I have this var in my code:
How do I check if 'images', 'images-2' or 'images-3' matches the 'href' string, then do something.. |
||||
|
|
should do the trick. |
|||||
|
|
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/ |
|||||||||||
|