|
1 2 3 4 5 6 7 8 9 |
$(document).ready(function () { $('input,textarea').focus(function(){ $(this).data('placeholder',$(this).attr('placeholder')) $(this).attr('placeholder',''); }); $('input,textarea').blur(function(){ $(this).attr('placeholder',$(this).data('placeholder')); }); }); |