Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

placeholder.js 238B

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