jQuery().ready(function() { var pleaseSend = false; $('form.product_description').submit(function() { pleaseSend = false; $('.sizes .line.body .cell.quantity input').each(function() { if($(this).val() != '' && $(this).val() != '0') { pleaseSend = true; } }); if(!pleaseSend) { $('.sizes .line .cell.quantity input').addClass('error'); interval = setInterval(function() { if($('.sizes .line .cell.quantity input').val() == '') { $('.sizes .line .cell.quantity input').val($('.sizes .line .cell.quantity input').data('defaultText')); } clearInterval(interval); }, 1000 / 25); return false; } }); $('.sizes .line .cell.quantity input').live('focus', function() { if($(this).hasClass('error')) { $('.sizes .line.body .cell.quantity input').removeClass('error'); } }); });