$el.find('a[data-increase_quantity]').each(function() {
      var $q = $el.find('#q_'+$(this).data('increase_quantity'));
      $(this).toggleClass('disabled', $q.val() >= $q.data('max'));
    });