I wrote a code that added a new row, and remove a (onClick) Attribute when i clicked on the existing row in table
<table style="vertical-align:middle;margin:20px;" id="table_insert">
<tr id="tra" >
<td >Word :</td><td onClick="insert_tr()"> <input type="text" id='word_text' ></input></td>
<td>Definition :</td><td><input type="text" id='def_text' ></input></td>
</tr>
</table>
this is the function that add a new row, remove onclick attr from the previous and add it to the new added row :
<script type="text/javascript">
function insert_tr(){
$(this).removeAttr('onClick'); //jQuery inside javascript function
console.log("text:"+$(this).find('td').attr('onClick') );
$('#table_insert').append('<tr onClick="insert_tr()"><td>Word :</td><td > <input type="text" id="word_text" ></input></td><td>Definition :</td><td><input type="text" id="def_text" ></input></td></tr>');
}
</script>
but it doesn't work,and on console screen,it prints [text:undefined] ..How can i fix it ?!!