We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
JQuery has deprecated trim and isFunction methods.
trim
isFunction
Replace $.trim() with value.trim()..
$.trim()
value.trim()
$.trim(element.text()) becomes element.text().trim()
$.trim(element.text())
element.text().trim()
Replace $.isFunction(stringOrFunction) with typeof stringOrFunction === "function"
$.isFunction(stringOrFunction)
typeof stringOrFunction === "function"
The text was updated successfully, but these errors were encountered:
Thank you. A pull-request here would be much appreciated.
Sorry, something went wrong.
Fix rmm5t#363: Replace jQuery deprecated methods trim and isFunction
2a030cb
Fix rmm5t#363: Replace jQuery deprecated methods trim and isFunction …
016b8ba
…and proxy
No branches or pull requests
JQuery has deprecated
trim
andisFunction
methods.Replace
$.trim()
withvalue.trim()
..$.trim(element.text())
becomeselement.text().trim()
Replace
$.isFunction(stringOrFunction)
withtypeof stringOrFunction === "function"
The text was updated successfully, but these errors were encountered: