$(function () { $('input').each(function () { if ( !this.value ) { $(this).siblings('label').hide(); } }); });
$(function () { $('input[!value] ~ label').hide(); });