select the right image

select the right image

Hi, I have a table with n rows
this is an example of row
  1. <tr>
  2. <td> 
  3.       <div>
  4.        <img class="deleteimage" src="' . $image . '" />
  5.              <a href='' class='trash2'>
  6.               <i class='glyphicon glyphicon-trash'></i>
  7.             </a>
  8.         </div>
  9.    </td>
  10.         <td>
  11.             <input type='checkbox' " . $chk . "> <b>Copertina</b>
  12.             </td>
  13.        </tr>
  14.     
I would select the name of the images that is select 

I can't select the right image. I select only the first image in the row. This is my code:
  1.   $('#table-image').find('tr').each(function () {
  2.              rowTable = $(this);
  3.             if (rowTable.find('input[type="checkbox"]').is(':checked')) {
  4.                 value = rowTable.find('img').attr('src');
  5.                nomeCopertina =value.substring(value.lastIndexOf('/')+1);
  6.             }
     Thanks for help