Click here to Skip to main content
15,891,951 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all,
I am using VS 4.0 version in my project.And I downloaded css & js files from http://jqueryui.com/datepicker/#dropdown-month-year[^]
for Datepicker .But in script of aspx I am unable to get the "datepicker" function name.Can any on help me how can I solve it


Thanks
Samar
Posted
Comments
Karthik_Mahalingam 1-Feb-14 22:26pm    
post your code..

Try
XML
<input type="text" id="date" name="date" />
<script>
$('#date').datepicker();
</script>
 
Share this answer
 
First check the relevant JQuery files references are added in the page.

Next use it as below.Make sure you have passed the Input ControlID is passed to the JQuery Selector.

<input type="text" id="datepicker">


XML
<script>
  $(function() {
    $( "#datepicker" ).datepicker({
      //To Do
    });
  });
  </script>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900