Using PHP I am displaying row's of data in a table. Each row is a link. Instead of using an <a>
tag in each table cell I decided to use Jquery to make each <tr>
tag clickable, except for the first <tr>
which is the table header, and the first <td>
because it contains a checkbox.
Check my Fiddle for an example, and code: http://jsfiddle.net/Draven/eQznR/12/
It worked fine with Jquery 1.7.2, but since they updated to 1.8.0 today it no longer works.
I'd like a solution without having to use Jquery 1.7.2 because obviously it's not the proper way of doing it.
Thank you.
EDIT: Thanks to Šime Vidas it's because I have a number as a class (class=1
).