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
The jQuery object is being passed into the IIFE wrapper and being aliased to $, however this aliased variable is only used when defining the jQuery plugin and the global jQuery is being used throughout the rest of the code. This is fine but when jQuery.noConflict(true) is executed this variable is no longer available.
Is it possible to make use of the aliased variable so we don't run into this issue?
The text was updated successfully, but these errors were encountered:
The
jQuery
object is being passed into the IIFE wrapper and being aliased to$
, however this aliased variable is only used when defining the jQuery plugin and the globaljQuery
is being used throughout the rest of the code. This is fine but whenjQuery.noConflict(true)
is executed this variable is no longer available.Is it possible to make use of the aliased variable so we don't run into this issue?
The text was updated successfully, but these errors were encountered: