jquery datepicker animation options wont work
问题 I have a textbox which has JQuery UI DatePicker control registered to it. It works fine but when I try to add animation options, control itself wont work. <head runat="server"> <script> $(document).ready(function() { $("#TextBox1").datepicker("option", "showAnim", 'slideDown'); }); </script> </head> <body> <form id="form1" runat="server"> <div> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> </div> </form> </body> Without the options, the picker would at least show itself. Can