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
"Drupal 7 provides jQuery in the no-conflict mode, which means that $ is not the jQuery object/namespace. This should not be an issue with properly written jQuery plugins that follow jQuery's plugins authoring documentation."
Please note that just wrapping the code in a anonymous function didn't fix it for me. Adding var $=jQuery; does the job, but is not a valid solution of course.
The text was updated successfully, but these errors were encountered:
When implementing the library in Drupal I get the following error:
See http://stackoverflow.com/a/23739123.
"Drupal 7 provides jQuery in the no-conflict mode, which means that $ is not the jQuery object/namespace. This should not be an issue with properly written jQuery plugins that follow jQuery's plugins authoring documentation."
Please note that just wrapping the code in a anonymous function didn't fix it for me. Adding
var $=jQuery;
does the job, but is not a valid solution of course.The text was updated successfully, but these errors were encountered: