$(':input').blur(function () {
$(this).css('border', 'solid 1px #ccc');
// Check if last input and do line below
//if(condition if $(this) is last element)
// $('#someOtherId').focus();
});
In the code above, how to know id $(this) is last input of all selected input?
Try this:
Working Sample