tags:

views:

10

answers:

0

I've got an HTML table with columns that hold a few words of a comment that when clicked should show a modal dialogue with the full contents of the comment (stored in a DIV on the page).

I was going to do this with a jQuery dialog, but can't decide if it's more efficient to put onclick handlers (with this.next.show..) on each cell or to tag the cells with a class and try to show the proper expanded DIVs that way.

What's more efficient?