onfocus and onblur events don't work correctly
Hello,
I have a page with a textbox that I want to have a message written inside it that will dissapear when the user clicks in the text box and writes something and it will show up again if the user clicks somewhere else but hasn't written anything inside the textbox. So I am using the onfocus event in order to write "Enter your email here" and the onfocus event in order to show the "Enter your email here" message inside the textbox if the user clicks somewhere else in the webpage but has left the textbox blank. If however the user has written, for example "[email protected]", I want this to remain in the textbox.
What am I doing wrong?
Code:
<html>
<head>
<script language="javascript" type="text/javascript">
function clearPassword()
{
document.getElementById('sample').setAttribute('class', 'empty');
document.getElementById('sample').value = '';
}
function restorePassword()
{
var given_text= document.getElementById('sample').value;
if (given_text='')
{
document.getElementById('sample').setAttribute('class', 'grayedOut');
document.getElementById('sample').value = 'Enter your email';
}
else
{
document.getElementById('sample').setAttribute('class', 'empty');
document.getElementById('sample').value = given_text;
}
}
</script>
</head>
<body>
<form >
<input id="sample" type="text" value="Enter your email" size="22" class="grayedOut" onfocus="javascript:clearPassword();" onblur="javascript:restorePassword();"/>
<input id="new" type="text"/>
</form>
</body>
</html>
Re: onfocus and onblur events don't work correctly
Code:
<script type="text/javascript">
function clearPassword() {
document.getElementById('sample').className = 'empty';
document.getElementById('sample').value = '';
}
function restorePassword() {
var given_text = document.getElementById('sample').value;
if (given_text.length < 1) {
document.getElementById('sample').className = 'grayedOut';
document.getElementById('sample').value = 'Enter your email';
}
}
</script>
events work fine...