/* Admin jquery function */
/*-------------------------------------------------------------------------*/

// Remove row from table
$(document).ready(function(){
    //$(".del_row").css("border","1px solid red");
    $(".del_row").click(function(event){
        $.get($(this).attr('href'));
        $(this).parent().parent().fadeOut("slow", function() {
            $(this).remove();
        });
        event.preventDefault();
    });
});

// Remove row from table with prompt
$(document).ready(function(){
    $(".del_row_prompt").click(function(event){
        var x = confirm('!!! POZOR opravdu chceš smazat interpreta včetně všechn písní?');        
        if (x == true) {
            $.get($(this).attr('href'));
            $(this).parent().parent().fadeOut("slow", function() {
                $(this).remove();
            });
        }
        event.preventDefault();
    });
});