brucedesert
New Member
we tried the code for displaying date using date picker it should display two times in a single page for from and to dates,but it is displaying only for from date and not for to date\[code\]<html><head> <link rel='stylesheet' id='admin-css' href='http://stackoverflow.com/questions/15545074/admin.css' type='text/css' media='all' /> <link rel='stylesheet' id='colors-fresh-css' href='http://stackoverflow.com/questions/15545074/colors-fresh.css' type='text/css' media='all' /> <link rel="stylesheet" href="http://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css" /> <script src="http://code.jquery.com/jquery-1.8.2.js"></script> <script src="http://code.jquery.com/ui/1.9.1/jquery-ui.js"></script> <link rel="stylesheet" href="http://stackoverflow.com/resources/demos/style.css" /> <script> $(function(){ $( "#datepicker" ).datepicker(); $("#icon").click(function() { $("#datepicker").datepicker( "show" ); }) }); </script></head><body> <input type="text" id="datepicker" name='from' size='9' value="" /> <img src='http://stackoverflow.com/questions/15545074/images/calender.PNG' id='icon' height='25px' width='25px'/ ></body></html>\[/code\]