This is development of my question in : stackoverflow.
This is the screenchot of my app :

Please see, I have a dropdown list in first column (item), when selected, I will update the third column like this
$.get("/index.php?r=kasir%2Ftransaction%2Fget-price-item&id=" +$(this).val(), function(data){
$(this).closest("tr").find(".harga-jual").val(data.price.harga)
});
My goal is, I want to set value the harga's column on row itself. So, in select option at first row selected, harga's updated just in first column, next in second so on...
How can I selected this on jquery ?
Thanks.