al456,
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>HELP datepicker</title>
<script src="http://s123.vv.si/temp/datepicker/js/jquery-1.7.1.min.js"></script>
<script src="http://s123.vv.si/temp/datepicker/js/ui/jquery-ui-1.8.16.custom.min.js"></script>
<link rel="stylesheet" type="text/css" href="http://s123.vv.si/temp/datepicker/js/ui/themes/ui-lightness/jquery-ui-1.8.16.custom.css" />
</head>
<body style="padding:30px">
<input type="text" name="birthday" id="datepicker" value="2010-01-01" />
<script>
$(function() {
var val = $("#datepicker" ).val()
$( "#datepicker" ).datepicker({
changeMonth: true,
changeYear: true,
yearRange: '1950:2015', // косячек, пока не актуально
firstDay: 1
});
$( "#datepicker" ).datepicker( "option", "dateFormat", 'yy-mm-dd' );
$( "#datepicker" ).datepicker("setDate", val);
//$("#datepicker" ).val(val) или так
});
</script>
<hr>
Непонимаю, не гуглиться совсем(((. <br>
Как получить при открытии страницы отображение cтартовой даты в<br>
< input type="text" name="birthday" id="datepicker" value="2010-01-01" / > <br>
</body>
</html>