shivasai824's picture
Upload 76 files
3ef8448
raw
history blame contribute delete
169 Bytes
$(document).ready(function(){
$('input[type="text"], input[type="password"], textarea').each(function() {
$(this).val( $(this).attr('placeholder') );
});
});