I have this code in jQuery:
children(\'table\').children(\'tbody\').children(\'tr\').children(\'td\')
Which gets all table cells for each r
$(document).ready(function() { $('td').on('click', function() { var value = $this.text(); }); });