Jump to content

onfocus and onblur events don't work correctly


ktsirig

Recommended Posts

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?

 

<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>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.