You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently moved to jQuery 3.4.1 which deprecates selectors using :first, :last and such in preparation for jQuery 4.x.
I was wondering how much this impacts jQueryUI datepicker because I grepped into all .js files in my project and in jQueryUI I see: e.dpDiv.find("select.ui-datepicker-year:first").replaceWith(e.yearshtml) and .filter(":first").
Will major jquery libraries like jQuery UI also be updated to remove/replace the deprecated selectors ?