I would like to change my login form.
I'd like to include default text for the ID text input that says "Username or Email"
and for Password of course "Password".
I can use this:
$(function(){ $('#ID').click(function(){ $(this).val('').unbind('click');});});
And this:
$(function(){ $('#Password').click(function(){ $(this).val('').unbind('click');});});
To clear the box when they click it.
I just cannot get the form to place default values in the text box.
Any help? Thanks!