So on my website I want login fields to work where if I click on the username field, the placeholder "username" disappears and I can then type in a username. If I don't type anything in and click away I want the place holder to re appear. The problem that I had was that even if I typed in a username and clicked away the placeholder would still come back in place and replace the username typed in. So here was the code I put in to fix that.
$('#user').focus(function(){
$(this).val('');
$(this).css("color","black");
}).blur(function(){
var x = parseInt($(this).val(),10);
if(x==0){
$(this).val('Username');
}
else{
$(this).val('youmessedup') /* I put this here just to see
if it was the conditional that wasn't working, which it was */;
}
$(this).css("color","grey");
});
Here is my html code
<form>
<br />
<input id ="user" type=text value="Username">
</form>
I would be posting for the password input also but it would be exactly the same thing just with ID of #pass.
I really have no idea what I'm doing wrong here. What I'm thinking is that val is a completely different data type that I think it is? I understand that .val() will grab the value of what is inside the text area. Is that right? If I am in the wrong someone please correct me.
placeholderfeature of html5? or if you want it to work on older browser, you can try using a jquery plugin. – andri Feb 24 at 9:06