I want to display helper text on clicking on the text boxes. eg: If I click a text box it should help us by saying what to type: Enter username here
I have tried below given code but the text "Enter username" is fading out, I want the text to be displayed until the focus is changed to another text box.
please, suggest some code for this type.
<input type = "text"/><span>Enter username</span>
<input type = "text"/><span>Enter password</span>
$(document).ready(function(){
$("input").focus(function () {
$(this).next("span").css('display','inline').fadeOut(1000);
});
});