Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've a table with click events bind to it rows (tr).

Also,there're A elements with it owns click events assigned inside those rows.

Problem is when i click on A element,it also fires click event from TD.And Im dont want this behavior,i just want to fire A click's event.

Code:

 // Event row TR

 $("tr:not(:first)").click(function() {
    $(".window,.backFundo,.close").remove();

    var position = $(this).offset().top;
    position = position < 0 ? 20 : position;

    $("body").append($("<div></div>").addClass("backFundo"));
    $("body").append($("<div></div>").addClass("window")
      .html("<span class=close><img src=Images/close.png id=fechar /></span>")
      .append("<span class=titulo>O que deseja fazer?</span><span class=crud><a href=# id=edit>Editar</a></span><span class=crud><a href=# id=delete codigo=" 
        + $(this).children("td:first").html() 
        + ">Excluir</a></span>")
      .css({top:"20px"})
      .fadeIn("slow"));

    $(document).scrollTop(0);
 });

 // <A> Element event

 $("a").live("click",function() { alert("clicked!"); });

Whenever you click the anchor it fires event from it parent row. Any ideas?

share|improve this question

2 Answers

You have to stop event bubbling. In jQuery you can do this by

e.stopPropagation();

in the onclick event of the anchor tag.

$("a").live("click",function(e){alert("clicked!");e.stopPropagation();});

Edit

See this post

jquery Event.stopPropagation() seems not to work

share|improve this answer
no that's not quite.I've already tried this.Nothing happens. – ozsenegal Feb 11 '10 at 12:27
Can you post your HTML markup? – rahul Feb 11 '10 at 12:29
I've a normal table.Then I create new anchor elements promagamatically,and append to that rows. – ozsenegal Feb 11 '10 at 12:33
Try giving return false at the end of the anchor event handler. – rahul Feb 11 '10 at 12:34
Add a e.preventDefault(); in there as well for good measure, there's some browser inconsistency between propagation prevention. – Nick Craver Feb 11 '10 at 12:35
show 2 more comments

I would use bind instead of live for both <tr> and <a> and the following code

$("a").bind("click", function(e){ alert("clicked!"); e.stopPropagation() });

for <a>.

All <a href>'s will work as expected and <tr> event handler code won't execute after clicking <a>.

Works in all modern browsers.

share|improve this answer

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.