javascript - How to display a calendar on click of a textbox with jQuery? -


i have text box , submit button. on clicking on text box,calender showing. problem following code has css or js file has url of http etc.i want css or js file on system following link because working on ibm rad , can't use external files. so,please me.

<!doctype html>  <html lang="en">     <head>          <meta charset="utf-8" />          <title>jquery ui datepicker - restrict 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() {                 $("#datepicker").datepicker({                      mindate: "-6m ",                      maxdate: -60                  });              });           </script>     </head>     <body>          <p>date: <input type="text" id="datepicker" /></p>       </body> </html> 

you accessing jquery , jquery ui cdn.

instead, can download jquery , jquery ui , use these files local file system.


Comments