1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
function toggle_favorite(element,id) { $(element).toggleClass('fav-off'); $.ajax ({ url: "process.php?action=toggle_fav", data:{id:id} }); } function toggle_archive(id) { $('#entry-'+id).toggle(); $.ajax ({ url: "process.php?action=toggle_archive", data:{id:id} }); }