$(document).on('click', '.move_list', function () {
$.ajax({
type: "GET",
url: $(this).attr('href'),
dataType: 'html',
data: '',
success: function (data) {
$('#list').html($(data).find('#list').html());
}
});
});Думаю всё понятно..