up vote 13 down vote favorite
1
share [g+] share [fb]

I'm generally averse to animation effects given the overheads of reflow on the client side browser.

jquery-ui is an awesome widget. It has all the stuff I need. But is there a way to disable the animation -- in other words the widget just appears instead of sliding out or fading in?

link|improve this question

62% accept rate
Simple question ... but a goodie! Helped me out today! – mattruma Oct 14 '09 at 14:29
feedback

2 Answers

up vote 22 down vote accepted

One way to achieve this (prior to jQuery UI 1.8) is to set the duration option to empty string.

  $('.date').datepicker ({
      duration: ''
  });

UPDATE Dec 6, 2010

In jQuery UI 1.8+, this is a documented feature of the showAnim option.

  $('.date').datepicker ({
      showAnim: ''
  });
link|improve this answer
Awesome! I was trying showAnim: '' and couldn't figure out why it worked in one project but not another. Thanks! – Code Commander Jan 5 '11 at 23:24
I'm using jQuery UI 1.7 for a legacy project - thanks for keeping the pre-1.8 information in your answer. – Liam Newmarch Oct 20 '11 at 11:50
feedback

Currently jquery datepicker plugin doesn't have any parameter to avoid animations.

link|improve this answer
This is not true. – cdmckay Sep 5 '09 at 3:45
Then, how do you disable it? jholloway7's response is a workaround, not a real sollution .. – yoda Sep 5 '09 at 3:48
@yoda It depends how you interpret the API docs to which I linked. I interpret "speed at which the datepicker appears ... immediately" to mean "no animation". However, I admit a more explicit API would be a welcome addition. – Joe Holloway Sep 5 '09 at 4:25
yes, but technically it loads the animation function, just doesn't graphically shows the animation due to the nature of the parameter passed .. Unless I am wrong – yoda Sep 5 '09 at 4:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.