Я скачал пакет (js, css) и добавил в свой код для примера.
Ничего не работает. Почему?
Мой код:
<div class="find">
<form action="" method="get">
<label for="from">From</label><input id="from" type="text" name="from" />
<label for="to">To</label><input id="to" type="text" name="to" />
<input id="found" type="submit" value="Найти" /><img alt="" width="16" height="16" src="/img/find.png">
</form>
</div>
Код из plugin:
$(function() {
$( "#from" ).datepicker({
defaultDate: "+1w",
changeMonth: true,
numberOfMonths: 3,
onClose: function( selectedDate ) {
$( "#to" ).datepicker( "option", "minDate", selectedDate );
}
});
$( "#to" ).datepicker({
defaultDate: "+1w",
changeMonth: true,
numberOfMonths: 3,
onClose: function( selectedDate ) {
$( "#from" ).datepicker( "option", "maxDate", selectedDate );
}
});
});
Подключение :
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript" src="/js/jquery/jquery-ui-1.11.0/jquery-ui.min.js"></script>