jquery-ui
jquery-ui copied to clipboard
The official jQuery user interface library.
jquery-migrate-3.5.0 warns of the usage of the subsequent deprecated code in the minified version of `jquery-ui` (the links have been obscured for privacy consideration): ``` JQMIGRATE: jQuery.expr[':'] is deprecated; use...
With https://github.com/jquery/jquery-ui/issues/2246 the element in the background of the dialog are getting removed from the AOM. The problem the title is just wrapped in a span which isn't semantic. The...
I am using jquery draggable and droppable function inside iframe. but when I reload the iframe my all events are not reset and lacking while dragging and dropping. is there...
(Apologies that I don't have a convenient reproduction of this problem, I'm working with private code that I cannot share.) The `ui-helper-hidden-accessible` class specifies `position:absolute`. When this applies to a...
I am experiencing an issue with the jQuery datepicker when the localization is set to "ar" (Arabic). Instead of showing the short names for the months, the datepicker displays them...
Little confused as to how to add a maximize button to a dialog? As title suggests, looking around the documentation and whatnot, if I spawn a dialog box, that automatically...
Take the following example: ``` $.widget('test.greet', { options: {names:['anonymous']}, _create: function(){ this.options.names.unshift('Hello'); console.log(this.options.names.join(' ')); } }); $('').greet({names:['Jools']}); $('').greet(); $('').greet(); $('').greet({names:['Adam']}); $('').greet(); ``` Expected output: ``` Hello Jools Hello anonymous Hello...
### Description ### Steps to reproduce the problem [testJquery.zip](https://github.com/user-attachments/files/16975577/testJquery.zip) 1.write the code like "document.body.style.zoom=1.2" in javascript. 2.create a date component of jqueryUI like $( "#datepicker" ).datepicker({}); 3.open the html and...
👋 I had raised a similar issue previously #1971, which was for "D M d yy" format. I have found that the same problem happens with `dd. MM yy` format...