Guest User

Untitled

a guest
Aug 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. Get the Height and Width of a jQuery UI Datepicker
  2. $('#loading').height($('.ui-datepicker-calendar').height() + $('.ui-datepicker-header').height())
  3.  
  4. $('#loading').height($('.ui-datepicker-inline.ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all').height())
  5.  
  6. $('#loading').height($('.ui-datepicker-calendar').outerHeight(false) + $('.ui-datepicker-header').outerHeight(false))
  7.  
  8. $('#loading').height($('.ui-datepicker-inline.ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all').outerHeight(false))
  9.  
  10. $('#loading').height($('.ui-datepicker-inline').height());
Add Comment
Please, Sign In to add comment