-
-
Notifications
You must be signed in to change notification settings - Fork 184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix jQuery 3+ warnings #178
Comments
This library is compatible with IE 6 :) |
Ahh.. Sometimes you just have to let it go, you know 😅 Nevertheless, somehow I missed that, thank you for quick reply! |
I thought more about it and I will make a release next week from which I will be removing the IE6 related things |
That sounds even better! |
better later than never! :) |
When using datepicker with jQuery 3+, jquery-migrate prints several warnings about deprecations in the code:
Possible solution: replace
$element.removeAttr('readonly');
with$element.prop('readonly', false);
(src)Possible solution: replace all
$.isArray
withArray.isArray
(src)Possible solution: replace all
$.trim
withtext.trim()
orString.prototype.trim.call( text == null ? '' : text )
(src)Possible solution: replace
el.mousedown(function() {...})
withel.on('mousedown', function() {...})
(src)Thanks in advance!
The text was updated successfully, but these errors were encountered: