I'm having trouble selecting for an element on my DOM.

How do you select for all links of the td class trash can?

<td class="trash_can">
<a rel="nofollow" data-remote="true" data-method="delete" data-confirm="Are you sure you want to delete Greek Theater at U.C. Berkeley?" href="/promotions/2/places/46">
<img id="trash_can" src="http://test.dev/images/trash.png?1305741883" alt="Trash">

The following code does nothing and is not working:

$(function(){
  $('.trash_can').live("click", function(event) {
    console.log('Clicked Delete');
    event.preventDefault();
  });
});
link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

.trash_can selects your td, not its a. You want to apply the event handler to the a element.

$(function(){
  $('.trash_can a').live("click", function(event) {
    console.log('Clicked Delete');
    event.preventDefault();
  });
});
link|improve this answer
+1 for looking right and being the most complete, deleted mine as its a dupe. – Mike Miller Jun 9 '11 at 17:18
feedback

you need to a the anchor tag to the selector

$(function(){
  $('.trash_can a').live("click", function(event) {
    console.log('Clicked Delete');
    event.preventDefault();
  });
});

Also you should use .delegate() instead of live()

Example:

$(".trash_can").delegate("a", "click", function(){
        console.log('Clicked Delete');
        event.preventDefault();
});
link|improve this answer
feedback

You probably want to select the links themselves rather than the td.

 $(function(){
   $('.trash_can a').live("click", function(event) {
     console.log('Clicked Delete');
     event.preventDefault();
   });
 });
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.