$('.tyre_data').each( function(){
// Tyre Tread
if($(this).val().length >= 4) {
console.log('in here');
$(this).closest(".check-option").find(".error-message").show();
$("html, body").animate({
scrollTop: $(".container").offset().top
}, 500);
return false;
}
});