$(document).on('click', '.move_term_down', function() {
    var row = $(this).parents('tr'),
        next = row.next();
    row.insertAfter(next);