/ Published in: jQuery
Expand |
Embed | Plain Text
$('input:text, textarea').each(function() { if ($(this).val() !== '') { $(this).parents('div.c-wrap').find('label').hide(); //$('body').prepend($(this).val()); } else { //$('body').prepend($(this).val()); } }); $('input:text, textarea').focus(function() { $(this).parents('div.c-wrap').find('label').hide(); }); $('input:text, textarea').blur(function() { if ($(this).val() == '') { $(this).parents('div.c-wrap').find('label').show(); } });
Comments
Subscribe to comments
You need to login to post a comment.

$('input:text, textarea').each(function() { if ($(this).val() !== '') { $(this).parents('div.c-wrap').find('label').hide(); //$('body').prepend($(this).val()); } else { //$('body').prepend($(this).val()); } }); $('input:text, textarea').focus(function() { $(this).parents('div.c-wrap').find('label').hide(); }); $('input:text, textarea').blur(function() { if ($(this).val() == '') { $(this).parents('div.c-wrap').find('label').show(); } });