How to pass the parameter between pages? Below is the code. How should I code the parameter by id in this code?
function addRowHandlers() {
var tbody = $("#employee-click");
tbody. each(function() {
$(this).on('click', function() {
window.location.href = "detail.php";
})
})
}