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
When using datepicker with jQuery 3+, jquery-migrate prints several warnings about deprecations in the code:
JQMIGRATE: jQuery.fn.removeAttr no longer sets boolean properties: readonly (src)
Possible solution: replace $element.removeAttr('readonly'); with $element.prop('readonly', false); (src)
JQMIGRATE: jQuery.isArray is deprecated; use Array.isArray (29 occurrences, like this)
Possible solution: replace all $.isArray with Array.isArray (src)
JQMIGRATE: jQuery.trim is deprecated; use String.prototype.trim (5 occurrences, like)
Possible solution: replace all $.trim with text.trim() or String.prototype.trim.call( text == null ? '' : text ) (src)
JQMIGRATE: jQuery.fn.mousedown() event shorthand is deprecated (src)
Possible solution: replace el.mousedown(function() {...}) with el.on('mousedown', function() {...}) (src)
Thanks in advance!
The text was updated successfully, but these errors were encountered:
This library is compatible with IE 6 :)
Therefore, the only thing that I could change is the mousedown related issue
I was thinking about letting IE6 go but I don't think I am ready yet :)
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: