$(function() {
    $('#select_all').click(function() {
        $('input:checkbox').attr('checked', 'checked');
    });

    $('#delete').click(function() {
        alert('test');
        //alert($(this).attr('product_id'));
    });

    $('select').change(function() {
        $('#no_desc').load('order/get_desc/' + $(this).val());
        /*
        $.post('order/get_desc',
               {no : $(this).val()},
               function(data) {
                   $('#no_desc').html(data);
               });
        */
    });
});


function delete_item(no) {
    location.href = 'inquiry/delete_item/' + no;
}
function delete_item1(no) {
    location.href = 'order/delete_item/' + no;
}

