Simple click clear restore form label


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



Copy this code and paste it in your HTML
  1. $('input:text, textarea').each(function() {
  2. if ($(this).val() !== '') {
  3. $(this).parents('div.c-wrap').find('label').hide();
  4. //$('body').prepend($(this).val());
  5. } else {
  6. //$('body').prepend($(this).val());
  7. }
  8. });
  9. $('input:text, textarea').focus(function() {
  10. $(this).parents('div.c-wrap').find('label').hide();
  11. });
  12. $('input:text, textarea').blur(function() {
  13. if ($(this).val() == '') {
  14. $(this).parents('div.c-wrap').find('label').show();
  15. }
  16. });

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.