8 lines
No EOL
176 B
JavaScript
8 lines
No EOL
176 B
JavaScript
|
|
$(document).ready(function(){
|
|
|
|
$('input[type="text"], input[type="password"], textarea').each(function() {
|
|
$(this).val( $(this).attr('placeholder') );
|
|
});
|
|
|
|
}); |