<input type="text"/><br/>
<input type="text"/><br/>
<input type="text"/><br/>
<input type="text"/><br/>
<input type="text"/><br/>
<input type="text"/><br/>
<input type="text"/><br/>
<input type="text"/><br/>
<input type="text"/>
$(function () {
$('input[type="text"]').val('');
$('input[type="text"]').on('change', function () {
scaleGo();
});
function scaleGo() {
$scale = 0;
$('input[type="text"]').each(function( index ) {
if ($(this).val() != '') $scale++;
});
$scale = $scale *10;
$('.scale_info').text($scale+'%');
$('.scale_inner').css('width', $scale+'%');
}
});