Skip to main content

HTML:

<input type="text" name="name" placeholder="enter your text" id="myInput" />   

jQuery:

$('#myInput').focus(function(){ $(this).attr('placeholder',''); }); $('#myInput').focusout(function(){ $(this).attr('placeholder','enter your text'); }); 
<input type="text" name="name" placeholder="enter your text" id="myInput" />   $('#myInput').focus(function(){ $(this).attr('placeholder',''); }); $('#myInput').focusout(function(){ $(this).attr('placeholder','enter your text'); }); 

HTML:

<input type="text" name="name" placeholder="enter your text" id="myInput" /> 

jQuery:

$('#myInput').focus(function(){ $(this).attr('placeholder',''); }); $('#myInput').focusout(function(){ $(this).attr('placeholder','enter your text'); }); 
Source Link
Uffo
  • 10.1k
  • 26
  • 95
  • 160

<input type="text" name="name" placeholder="enter your text" id="myInput" /> $('#myInput').focus(function(){ $(this).attr('placeholder',''); }); $('#myInput').focusout(function(){ $(this).attr('placeholder','enter your text'); });