aboutsummaryrefslogtreecommitdiffhomepage
path: root/js/poche.js
blob: 6751920a98ce02a3883dfc55662877da402d7fd9 (plain) (blame)
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}
    });
}