Text input default value recover


/ Published in: jQuery
Save to your folder(s)

<p>This snippet could be used when a text input has a default value. Thus, when user clicks on the input to write, the default value disappears and allows the user to write, but if the user does not type anything, the default value will appears again. It also adds a class to the input when the user is typing on it and is removed when the input loses focus.</p><p>This snippet must be inside the ready event.</p><p>For the HTML markup, the only thing to take care is that you must use the same class in all the inputs that you want to give this functionality. In the example I use \"input-text-js\", but you can use whatever you want.</p><p>You can see this snippet working on www.retto.com</p>


Copy this code and paste it in your HTML
  1. var textBoxs = $('.input-text-js');
  2. textBoxs.each(function() {
  3. var theValue = $(this).attr('value');
  4. $(this).focus(function (){
  5. if($(this).attr('value') == theValue){
  6. $(this).attr('value','').addClass('writingIt');
  7. }
  8. }).blur(function () {
  9. if($(this).attr('value') == ''){
  10. $(this).attr('value',theValue).removeClass('writingIt');
  11. }
  12. });
  13. });

URL: retto.com

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.