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