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
jQuery 3.3 introduces a new signature to these methods, allowing a single array of strings to be passed as the first/only argument.
Note: .removeClass( [] ) will not remove all classes. It is instead equivalent to .removeClass( "" ). Passing no arguments (e.g. .removeClass()) will remove all classes.
The text was updated successfully, but these errors were encountered:
See jquery/jquery#3532
jQuery 3.3 introduces a new signature to these methods, allowing a single array of strings to be passed as the first/only argument.
Note:
.removeClass( [] )
will not remove all classes. It is instead equivalent to.removeClass( "" )
. Passing no arguments (e.g..removeClass()
) will remove all classes.The text was updated successfully, but these errors were encountered: