$('button[type="submit"]').each(function() { if ($(this).val()) { $(this).addClass('disabled'); } else { $(this).prop('disabled', true); } });