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

I have a table in which the rows are clickable. Also within the row I have a clickable button. Both when clicked open a new window and the same URL. The clickable row is achieved by JQuery. The clickable button by HTML. (in case javascript disabled) How can I stop the URL opening twice ie when the button within the row is clicked? I have tried boolean logic but could not get it to work i.e the and button still need to be functional even after clicking the button once.

I am very new to Javascript and Jquery. Many Thanks. Pls find my code below:

Jquery code:

$(document).ready(function() {

    $('#myTable tr').click(function() {
        var href = $(this).find("a").attr("href");
        if (href) {
          window.open(href);
        }
    });

});

the HTML code:

<td>
 <a href="some link" target="_blank">
  <img src="image.jpg"/>
 </a>
</td>
share|improve this question
Not sure what you want to do, but preventDefault() stops the default behavior of link $('a').click(function(e) { e.preventDefault(); }); – Usman Sep 4 '11 at 9:24
Your description of the problem does not match your markup. Having something inside an anchor tag does not make it a "button". A button is a form element. If you did in fact have a seperate button that would make it a more interesting question, but you did receive the answer to how you would disable the default behavior of your anchor tag. However, considering that you're doing the same thing with the javascript as target _blank does, it makes one wonder why the javascript? – gview Sep 4 '11 at 9:32
Hi, thank-you but not what i was after - i think. i should have said clickable image instead of button - sorry. when i click the image the new window opens twice. The solution above does not prevent this. Unless I am using it wrong. The reason I am using jquery is so that the whole row is clickable not just the image within the row. Any ideas? @gview – kad Sep 4 '11 at 11:10

2 Answers

up vote 0 down vote accepted

Ok so, I took another look at this and realized the original nugget of advice was correct, but that the child link is the one that needs to have its default behavior prevented.

$(document).ready(function() {  
  $('#myTable tr td a').click(function(e) {
    e.preventDefault();        
  });
  $('#myTable tr').click(function() {
    var href = $(this).find("a").attr("href");
    if (href) {
      window.open(href);
    }
  });
});

Looking back at the comments Usman suggested this.

share|improve this answer
Thank-you very much. This works great. Much obliged. @gview – kad Sep 5 '11 at 11:37
@kad: Glad to hear it. You can click on this answer to indicate it solved your problem, which is helpful for people searching past questions. – gview Sep 5 '11 at 19:53

event.preventDefault() will stop any default actions from being executed.

$(document).ready(function() {

    $('#myTable tr').click(function(event) {
        var href = $(this).find("a").attr("href");
        if (href) {
          window.open(href);
          event.preventDefault();
        }
    });

});
share|improve this answer
Hi, thank-you but not what i was after - i think. i should have said clickable image instead of button - sorry. when i click the image the new window opens twice. The solution above does not prevent this. Unless I am using it wrong. The reason I am using jquery is so that the whole row is clickable not just the image within the row. Any ideas? @Andreas – kad Sep 4 '11 at 11:16
@kad Uhm, do you have any link we could test? Unless I'm mistaken the above should work... unless your issue is that when you click OUTSIDE the a/img, it still opens twice. In that case you are running the script twice for some reason. A link would be handy though. – Andreas Sep 4 '11 at 11:23
Hi Andreas, here is the link: – kad Sep 4 '11 at 15:02
Here is the link: link @Andreas Many thanks. – kad Sep 4 '11 at 15:04
show 4 more comments

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.