I've got to check LIVE whether all input fields are NOT empty and if they don't: show $sucess3 box.
$('#old_pass,#pass,#pass2').bind("focus blur change keyup", function(){
if( $('#old_pass').val().length > 0 && $('pass1').val().length > 0 && $('pass2').val().length > 0) { $('#success3').show(); } else { $('#success3').hide(); }
}).blur();
How to do it?
It works, I've dropped '#'
if( $('#old_pass').val().length > 0 && $('#pass1').val().length > 0 && $('#pass2').val().length > 0) { $('#success3').show(); } else { $('#success3').hide(); }
ehh