The code:
    $('.del').click(function(e){
        $(this).parents('.order-item').remove();
        if($('.order-item').length == 0){
            $('#order-items').append(Data.order_item_clone)
        }
    })
What am I doing wrong? As you can see, I am trying to remove the parent element '.order-item' based on the '.del' element clicked. Nothing is happening. This is what the html looks like:
<div class="col-md-3" id="order-items">
    <div class="order-item">
        <div class="col-md-1 nhp" id="side">
        
        </div>
        <div class="col-md-7 nhp">
            <div class="col-md-3 obox-num obox">
            </div>
            <div class="col-md-9 obox-purity obox">
            </div>
            <div class="col-md-4 obox-info obox-price obox">
            </div>
            <div class="col-md-4 obox-info obox-weight obox">
            </div>
            <div class="col-md-4 obox-info obox-total-price obox">
            </div>
        </div>
        <div class="col-md-2 nhp">
            <button class="del" style="width:100%; height:77px"> Del </button>
        </div>
        <div class="col-md-2 nhp">
            <button class="print" style="width:100%; height:77px"> Print </button>
        </div>
    </div>
</div>
For the most part, this html is generated dynamically with javascript/jquery. Can anyone help? Thanks in advance
Edit: When I do $('.del').eq(0).parents('.order-item').remove() things work find, so there is something wrong with $(this)
 
    