I have a flexigrid table that looks like this(this is just a snipper of the table):\[code\] $('#viewNotesGrid').flexigrid({ url: url, dataType: 'json', method: 'get', colModel: [ { display: '<input type="checkbox" class="noteCheckBox" id="checkAllNotes" />', name: 'checkBox', width: 20, sortable: false, align: 'center', process: showDescription }, { display: 'File ID', name: 'FileID', width: 70, sortable: true, align: 'center', process: showDescription, hide: true }, { display: 'File Name', name: 'FileName', width: 70, sortable: true, align: 'center', process: showDescription, hide: true },\[/code\]I am trying to get all the investigator Names(which will be the cell text) where the attribute is abbr="FName, LName".Here I have a function that gets all the FileID's where the checkboxes are checked(this works):\[code\]function getSelectedNoteIDs() { var selectedNotesList = new Array; var i = 0; $('.noteCheckBox:checked').each(function () { if ($(this)[0].id !== "checkAllNotes") { selectedNotesList = $(this)[0].id.split('_')[1]; ++i; } }); return selectedNotesList; }\[/code\]I tried to use this as a template to do my search but it doesn't seem to work for finding the Names.Here is my function "Attemping" to do it. I have it grabbing the Names now, but it is grabbing multiple rows so if I select 1 checkbox, it still grabs all the other rows with the same attribute:\[code\]function getSelectedInvestigatorNames() { debugger; var investigatorNames = new Array; var i = 0; $('.noteCheckBox:checked').each(function () { if ($(this)[0].id !== "Investigator") { investigatorNames = $('td[abbr="FName, LName"]').text(); ++i; } }); return investigatorNames; }\[/code\]So instead of returning : "James Jordan" or something, it now returns :"James JordanJames JordanJames Jordan" etc etc