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
Some very popular CMSs, for example Wordpress, import jQuery in compatibility mode using jQuery.noConflict(). This causes that this plugin does not work when included as is.
Please wrap your js code in:
(function( $ ) {
// Your jQuery code here, using the $
})( jQuery );
Some very popular CMSs, for example Wordpress, import jQuery in compatibility mode using
jQuery.noConflict()
. This causes that this plugin does not work when included as is.Please wrap your js code in:
as described in documentation: Avoiding Conflicts with Other Libraries.
The text was updated successfully, but these errors were encountered: