Hi,
Is it possible to add a jQuery function so that a click in a table cell will invoke a hidden <a href="javascript: ..." /> element (that is a descendant of the TD) ?
I've tried with
$('#table td').click(function() { $(this).find('a').click(); });
An other variants, but to no luck.
--larsw