Tengo el siguiente código HTML:jQuery div onclick hacer clic en un href dentro del div
<table class="products">
<tr>
<td>Product description probably goes here</td>
<td><a href="#">more information</a></td>
</tr>
</table>
para que sea un poco más atractivo para los navegadores compatibles con Javascript He añadido este jQuery (1.3.2):
$(document).ready(function(){
$('table.products tr').click(function(){
$(this).find('a').click();
return false;
});
});
Pero creo que entra en un ciclo infinito o algo así. Safari muestra esto:
RangeError: Maximum call stack size exceeded. jquery.min.js:12
¿Alguien puede ofrecer una solución o mejor?
reason for downvote? – Shawn
hey casi te lleva a 5k;) – Mattis