I\'m trying to update a database users table.
I made an HTML table which contains the data of the users in my database.
this HTML table contains 3 columns and in each row t
$("button").click(function () {
var inputValue = $(this).closest("tr").find("input[type=text]").val();
var selectValuse = $(this).closest("tr").find("[name='select_job']").val();
var index = $(this).closest("tr").index();
});