jquery ui

/*
When you instantiate your sortable list, you can assign options, one of
which is elements not to drag on.
*/
$(function() {
    $("#sortable-list").sortable({
        cancel: '#element-not-to-be-dragged'
    });
});
Ugliest Unicorn