$().ready( function() { if(document.getElementById('extrato')) extrato(); } ); function extrato() { $("#extrato_agencia").bind('blur', function() { if($(this).attr('value') == "") { $(this).attr('value', 'agencia'); } }); $("#extrato_conta").bind('blur', function() { if($(this).attr('value') == "") { $(this).attr('value', 'conta'); } }); $("#extrato_senha").bind('blur', function() { if($(this).attr('value') == "") { $(this).attr('value', 'senha'); } }); $("#extrato_agencia").bind('focus', function() { if($(this).attr('value') == "agencia") { $(this).attr('value', ''); } }); $("#extrato_conta").bind('focus', function() { if($(this).attr('value') == "conta") { $(this).attr('value', ''); } }); $("#extrato_senha").bind('focus', function() { if($(this).attr('value') == "senha") { $(this).attr('value', ''); } }); } 
