naster, Ссылкам для перемещения строк добавь класс move_str
$(document).on('click', '.move_str', function (event) {
event.preventDefault();
$.ajax({
type: "GET",
url: $(this).attr('href'),
dataType: 'html',
data: '',
success: function (data) {
$('#categoryRecords').html($(data).find('#categoryRecords').html());
}
});
});