Skip to content

Instantly share code, notes, and snippets.

@iredun
Created June 17, 2014 16:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iredun/0312a9b97bf505f8a3d7 to your computer and use it in GitHub Desktop.
Save iredun/0312a9b97bf505f8a3d7 to your computer and use it in GitHub Desktop.
Функция меняет value и placeholder местами и удаляет потом value у всех элементов класса inputtext(в данном случае использовал для элементов input)
<script>
$(document).ready(function() {
$('.inputtext').val(function() {
$(this).attr('placeholder',$(this).val());
return '';
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment