I have many link like this with different rel attributes

<a href="#" class="buy" rel="WVSEU1Y">buy</a>

I want to get the value of rel attribute on click... but this code doesn't seem to work but firebug also doesn't fire any error in console. What am i doing wrong?

$("a.buy").click(function(event) {
event.preventDefault();
var msg =  $(this).attr('rel');
alert(msg);

});

update: I corrected the html error i had. Its not preventing default. And the click event doesnt seem to work.

Adding the code top of all the other scripts worked.

link|improve this question

If this isn't working, and it should be, you might have errors elsewhere in your script. Paste your jQuery into JS Lint, and see if it throws any errors; unterminated strings, syntax errors and so on. If there's no errors check for other functions/handlers interfering with your click-handler. – David Thomas Jul 8 '11 at 7:52
feedback

4 Answers

up vote 1 down vote accepted

It is working fine here http://jsfiddle.net/niklasvh/NFfe5/ but note that you have an error in your HTML, you are missing the quotation mark around href=#"

Make sure your code is wrapped in a DOM ready as well:

$(function(){
// your code
});
link|improve this answer
corrected the error.. but not working. – esafwan Jul 8 '11 at 7:37
1  
@esagwan the problem is elsewhere then. Please share the rest of your code as well, or give a link to your page. – Niklas Jul 8 '11 at 7:48
adding at the top of all other scripts worked. – esafwan Jul 8 '11 at 7:52
feedback

try this

$(document).ready(function(){

       $("a.buy").live('click',function(event) {
          event.preventDefault();
          var msg =  $(this).attr('rel');
          alert(msg);

        });   
});
link|improve this answer
feedback

this is bound to the global object in this case. I believe that event.target will be the DOM object you want.

$("a.buy").click(function(event) {
event.preventDefault();
//here, this refers to the global object, not the a element
//unless jquery is doing some magic to bind it
//event.target at this point in execution should be the a element
var msg =  $(this).attr('rel'); 
alert(msg);

});
link|improve this answer
i dont understand – esafwan Jul 8 '11 at 7:43
feedback

I have tested, the write is no problem. Code is as follows:

<a href="#" class="buy" rel="WVSEU1Y">buy</a>
<script type="text/javascript">
    $(function () {
        $(".buy").bind("click", function () {
            alert($(this).attr("rel"));
        });
    })
</script>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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