Adding Dynamically control in table rows using jquery

Adding Dynamically control in table rows using jquery

I want to add Dynamically the all controls as it in previous row with class name . for this i have done this , but it is too complecated. 
 and my jquery is here
  1. <table id="Myt">
  2.     <tr>
  3.         <td><input type="text" class="fAge" ></input> </td>
  4.         <td><input type="text" class="lAge" ></input> </td>
  5.         <td><input type="Checkbox" class="elegible" >Eligible</input> </td>
  6.         <td><a href="#" class="addmore">Add More</a> </td>
  7.     </tr>
  8. </table>

  9. my jquery
  10. $('.addmore').on('click',function()
  11.                  {
  12.                      
  13.                      $('#Myt tr').last().after('<tr><td><input type="text" class="fAge" ></input></td><td><input type="text" class="lAge" ></input></td><td><input type="Checkbox" class="elegible" >Eligible</input></td><td><a href="#" class="addmore">Add More</a> </td></tr>');
  14.                  });
but the on clicking the newly added row, it doesn't add new row to table 
jsfiddle link
http://jsfiddle.net/79Lyp/