Witajcie mam taki kod
<meta charset="utf-8" />
<title
>jQuery UI Datepicker
- Select a
Date Range
</title
> <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function() {
$( "#from" ).datepicker({
defaultDate: "+1w",
changeMonth: true,
numberOfMonths: 2,
onClose: function( selectedDate ) {
$( "#to" ).datepicker( "option", "minDate", selectedDate );
}
});
$( "#to" ).datepicker({
defaultDate: "+1w",
changeMonth: true,
numberOfMonths: 2,
onClose: function( selectedDate ) {
$( "#from" ).datepicker( "option", "maxDate", selectedDate );
}
});
});
</script>
</head>
<body>
<form action="lista_kodow_dzis.php" method="post" target="lista_kodow">
<label for="from">Od dnia</label>
<input type="text" id="from" name="from" />
<label for="to">do dnia</label>
<input type="text" id="to" name="to" />
<input type="submit" value="Submit dates">
</form>
</body>
ogarnąłem ze wybiera daty

jak zrobić żeby nie otwierał wyniku w noym oknie tylko żeby wylistował poniżej wynik?
wiem głupie pytanie :/