I'm adding a row dynamically to a table and I need to do 2 things after it:
1) clear the values
2) simulate a click on a newly created link (the link is in one of the cells).
Here is the code that adds the row to the table (which is working fine):
var row = $('.records_table tbody>tr:last').clone(true);
row.insertAfter('.records_table tbody>tr:last');
My row html code looks like this:
<tr class="odd">
<td class="name">name_0</td>
<td class="type">type_0</td>
<td class="value">value_0</td>
<td class="edit">
<a href="edit" class="edit">edit</a>
</td>
</tr>
So, my first question: How can I clear the values name_0, type_0 and value_0?
Now, the second question. I need to simulate a click on a the link "edit" in order to trigger an event linked to the selector "a.edit" (this event is being correctly triggered for the pre-existing edit links in other rows that are loaded with the page).
I'm able to get the button as var editbtn = $("td:last", row). I'm able to hide the link doing editbtn.hide(), but doing editbtn.click() is not triggering the event as expected.
The handler that should get the click is: $(document).on('click', 'a.edit', function(e) {, which again is working on the other links in other rows.
Any ideas? Thanks a lot