jquery-ui
jquery-ui copied to clipboard
The official jQuery user interface library.
see https://stackoverflow.com/questions/8605439/jquery-draggable-div-with-zoom/8605589#8605589 for specific issue and example along with a workaround if a container has (eg) `$('#container').animate({ 'zoom': currentZoom += .1}, 'fast');` applied to it, any draggable objects in the...
Why does the Slider range stops adjusting when on developer tool device emulation mode. It adjusts when I click on it, but not when I drag on it. This can...
Based on this https://stackoverflow.com/a/62109988/502366 This jQuery style for screenreaders has not changed in a long time but now that browser have advanced it is missing some features explained in the...
PR for https://github.com/jquery/jquery-ui/issues/2271. Initial draft adding an option based on the naming @mgol suggested on the issue (`uiDialogTitleTagName `) and using `span` as the default. Currently working on adding tests...
Fixes: #2277. This end up being a bug on "resizable", and as I have shown on the issue it's quite a weird behavior and it's not consistent across browsers. The...
The "common widget" tests, checking if a widget doesn't overwrite some core widget APIs wasn't running as it was incorrectly checking for `$.uiBackCompat === false` instead of `$.uiBackCompat !== true`...
Dialog content shrinks when dialog have scrollbars and is resized.  This is a similar problem as in #1979 and #2083. It was marked as solved in jQueryUI 1.13.3 but...
https://github.com/jquery/jquery-ui/blob/54f96eea31b21d9ecb00912261df3e5aaebf8cce/ui/widgets/autocomplete.js#L256-L258 When li element in the dropdown list has an empty "aria-label" attribute current implementation fallbacks to using bound item.value for aria-label. It'd be more logical using item.label for fallback...
To use the Transfer effect you have to have `$.uiBackCompat = true;` and not sure why. You can see the error on the showcase: https://jqueryui.com/effect/ Pick Transfer and run. 
Building off #2268, there is a problem when destroying the datepicker where it doesn’t completely get removed from memory. This pull request, https://github.com/jquery/jquery-ui/commit/817ce38, removes the instance reference but the actual...