I have a script where I append a table row to my html (inside the row there is a text field):
$('#resulttable').append('<tr><td>'+this.id+'</td><td>'+ this.customer_name + '</td><td>'+ this.total +'</td>'+'<td><input type = "text" id ='+this.id+' name = "paid" onChange="change_send(this.value, this.id);"></td></tr>');
Here I am sending two parameters to my change_send function. I want some more parameters, say for example this.bill_id. How can I add that in my text field and send it as the third parameter?