placeholder.js 169 B

12345678
  1. $(document).ready(function(){
  2. $('input[type="text"], input[type="password"], textarea').each(function() {
  3. $(this).val( $(this).attr('placeholder') );
  4. });
  5. });