このコードを作成しましたが、入力を変更するたびに発生します。
var width =+ 0;
$("#Email").blur(function() //whenever you click off an input element
{
if( !$(this).val() ) { //if it is blank.
animateBar(width-=25);
} else {
animateBar(width+=25);
}
});
function animateBar(percentage)
{
$('#bar').animate({width: percentage+"%"}, 150);
}