I run the next script on IE and Nightly without any problems. But chrome wont run it for some reason...any Ideas ?
<script>
$(function() {
$('#date').datepicker({
dateFormat: 'yy-mm-dd',
autoSize: true,
onSelect: function (dateText, inst) {
$(this).parent('#frmDate').submit();
}
});
});
</script>
<form id="frmDate" action="php/price_qury.php" method="post" target="_blank" onSubmit='window.open("width=450,height=300,status=yes,resizable=yes,scrollbars=yes)'>
<input id="date" name="date" type="text" size="10">