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
It's considered good practice to use jQuery.noConflict() in case other libraries use $ on window. This library should either define $ as a local variable within its closure and assign it jQuery or it should just use jQuery everywhere.
The easiest solution would be to simply add $ = jQuery at the top of the main file.
The text was updated successfully, but these errors were encountered:
It's considered good practice to use
jQuery.noConflict()
in case other libraries use$
onwindow
. This library should either define$
as a local variable within its closure and assign itjQuery
or it should just usejQuery
everywhere.The easiest solution would be to simply add
$ = jQuery
at the top of the main file.The text was updated successfully, but these errors were encountered: