vote up 1 vote down star

What is the best way to make a tables row a link? I currently am using jquery to zebra stripe the rows and also to highlight the onmouseover/off selected row so if js is the answer please use jquery.

flag

The google search query 'jquery tr link' gave me a few solutions already. Maybe you should try it too? I'm not answering your question because I have no jquery experience at all so I might be saying something 'stupid' ;-) – Zaagmans Feb 20 at 12:25
yes it gives you results but I wouldn't consider most of them answers. If I google "dog poop tr link" I get "answers" also. :) – hacintosh Feb 20 at 12:41
The two proposed JQuery solutions are problematic for usability and accessibility. The CSS solution is better for any public website. See my comments there. – andybak Mar 25 at 17:50

3 Answers

vote up 1 vote down check
$(document).ready(function(){
   $("tr").click(function(){
      /* personally I would throw a url attribute (<tr url="http://www.hunterconcepts.com">) on the tr and pull it off on click */
      window.location = $(this).attr("url");

   });
});
link|flag
vote up 6 vote down

I just use css:

<style>
table.collection {width:500px;border-collapse:collapse;}
table.collection tr {background-color:#fff; border-bottom: 1px #99b solid;}
table.collection tr:hover {background-color:#ffe;}
table.collection td {display:table-cell;border-bottom: 1px #99b solid; padding:0px;}
table.collection td a {text-decoration:none; display:block; padding:0px; height:100%;}
</style>
<table class="collection">
<tr>
    <td><a href="#">Linky1</a></td>
    <td><a href="#">Data1</a></td>
</tr>
<tr>
    <td><a href="#">Linky2</a></td>
    <td><a href="#">Data2</a></td>
</tr>
</table>
link|flag
2  
Best solution by far. Browser still see's this as a link so 'open in tab' or 'copy link' will work. The other solutions break my browser! There is scope for a JQuery solution that automates the above by DOM manipulation. – andybak Mar 25 at 17:48
I'm having trouble with this solution. If one of the table cells contains enough content to wrap lines, the height of neighbouring cells won't stretch to the full height. Have you found a workaround for this case? – troelskn May 28 at 9:32
This sounds like an IE quirks mode issue. I don't see this in firefox or IE 7-8 with "-//W3C//DTD XHTML 1.0 Strict//EN". It also may not work in IE 6 (but what does?) – Nick Jun 11 at 19:51
on second thought - adding height:100%; to the a style would most likely fix it (see the last edit). – Nick Jun 11 at 19:55
vote up 0 vote down

Register a onclick event handler for the tr element. Something like this using jQuery:

$("tr").bind("click", function(){ 
  window.location = 'http://www.example.com/'; 
});
link|flag
Doesn't this link you to the same location on every row click? – Zaagmans Feb 20 at 12:27
You may use a hidden input in each tr to store the url. – Adones Cunha Feb 20 at 12:33
This will indeed bind the same link to each row, modify according to your needs.. – Ronny Vindenes Feb 20 at 12:38

Your Answer

Get an OpenID
or

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