This does what you ask for:
$(document).ready(function() {
var tableControl= document.getElementById('mytable');
$('#jqcc').click(function() {
var obj = new Array();
$('input:checkbox:checked', tableControl).each(function() {
var innertext = $(this).parent().next().text();
obj.push(innertext);
});
console.debug(obj); // Write it to the console
});
});
http://jsfiddle.net/uEr3n/