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

I've got this code:

$('a').click(
   function() {
       $("#change_flash").css("display", "block"); $("#my_flash").css("display", "none");
  });

But this one works for all anchor elements. I would like to influence with this script only for anchors elements which contains rel="lightbox" attribute.

How can I achieve it?

share|improve this question
Search of "jQuery selectors class with specific attributes" on Google revealed stackoverflow.com/q/6246683/411902 – Rob Kielty Jun 4 '12 at 13:53

2 Answers

up vote 2 down vote accepted
$('a[rel="lightbox"]').click(
   function() {
       $("#change_flash").css("display", "block"); $("#my_flash").css("display", "none");
  });
share|improve this answer

Use the following:

$('a[rel="lightbox"]').click(
    function(){
        // do your stuff here
    });

This is using the attribute="value" notation (see references).

There are, also, other options:

  • attribute-begins-with: attribute^="value",
  • attribute-ends-with: attribute$="value",
  • attribute-contains: `attribute*="value".

Note, of course, that while $('[rel="lightbox"]') is an absolutely valid selector all by itself, this will cause jQuery to examine every element on the page for that attribute and value in order to bind/assign the click event(s); therefore it's always best to use a tag-name, hence the $('a[rel="lightbox"]'), or a class-name in order to limit the number of elements jQuery has to search through to find the matching elements.

Although in modern browsers I seem to remember this 'search' is handed over to the native document.querySelectorAll(), rather than using Sizzle, but even so it's best to limit the amount of work a browser need do.

References:

share|improve this answer
damn, so easy :) thanx – David Jun 4 '12 at 13:58
You're absolutely welcome; I'm glad to have been of some help! =) – David Thomas Jun 4 '12 at 14:00

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.