$(document).ready(function() {
$.ajax({
type: "GET",
url: "/myshoppinglists",
success(data) {
for(let item of data) {
$(".tb_myshoppinglists").append("
| " + item.name + " | " + item.description +
" | forward |
");
}
}
});
$.ajax({
type: "GET",
url: "/sharedshoppinglists",
success(data) {
for(let item of data) {
$(".tb_sharedshoppinglists").append("| " + item.name + " | " + item.description +
" | forward |
");
}
}
});
$(document).on("click", ".btn_detail", function() {
window.location.replace("/shoppinglist/" + $(this).closest("tr").attr("id"));
});
});