I started encountering an error after upgrading Google Chrome to Version 131.0.6778.86 (Official Build) (x86_64). The issue is reproducible only when using the uncompressed version of jQuery UI. The relevant code: ```javascript if (options.using) { // Adds feedback as the second argument to the using callback, if present using = function(props) { // skipped... }; } ``` It seems that the variable using is being used as a function without being declared properly. Adding `var` in front of `using` resolves the issue. Example: [CodePen link](https://codepen.io/alex-solovyev/full/ZEggZgX)