You cannot use the same "id" value for multiple elements on a page.
You can change this from "id" to "class" and work (maybe). It's hard to say exactly what you are doing.
<tr class='row'>
</tr>
then
jQuery.facebox({div: '.row'});
Of course, you can just find the elements <tr>directly:
jQuery.facebox({div: 'tr'});
source
share