order.js 232 Bytes
$(function() {
    $(document)
        .on('click', '.remove-order-product', function(e) {
            e.preventDefault();
            $(this)
                .parents('.row-order-product')
                .remove();
        });
});