I'm writing my own drupal 7 module, and like to use JQuery in it.

$('#field').toggle();

But I'm getting this error:

TypeError: Property '$' of object [object DOMWindow] is not a function

Which means, that JQuery is not loaded. Right? Otherwise $ should be defined. But in the header it reads:

<script type="text/javascript" src="http://rockfinder.de/misc/jquery.js?v=1.4.4"></script>

do I have to do anything else to activate JQuery in Drupal? Is $ being overwritten by Drupal?

That's the website: http://rockfinder.de

link|improve this question

feedback

3 Answers

up vote 29 down vote accepted

From the Drupal 7 upgrade guide:

Javascript should be made compatible with other libraries than jQuery by adding a small wrapper around your existing code:

(function ($) {
  // Original JavaScript code.
})(jQuery);

The $ global will no longer refer to the jquery object. However, with this construction, the local variable $ will refer to jquery, allowing your code to access jQuery through $ anyway, while the code will not conflict with other libraries that use the $ global.

You can also just use the 'jQuery' variable instead of the $ variable in your code.

link|improve this answer
Thanks! That's exactly what I was looking for and couldn't find! – JochenJung Jan 13 '11 at 15:04
1  
I'm unfamiliar with this syntax in Javascript. Could someone explain what's going on here? – Jim Greenleaf Jan 18 '11 at 19:09
It basically creates an alias from $ to jQuery. As said above, the reason for this is to include other JS libraries which are using the $. – Berdir Jan 30 '11 at 23:51
For some reason that gave me a long error message, but when i just replaced $ with jQuery it worked just fine. – Jasmo Mar 29 at 9:51
@Jim The code is wrapped into a function having a parameter $. Then it is called with jQuery, which executes the function by replacing all instances of $ with jQuery. This is one of the three methods to work around the '$ is not a function' issue (see tshikatshikaaa.blogspot.com/2012/05/…) – JVerstry May 15 at 21:15
feedback

According to Firebug, your jQuery file is being loaded:

alt text

But the $ is being overwritten by something else:

alt text


What you should do is encapsulate the use of the $ variable with a function that invokes itself using the jQuery object as it's first actual argument:

(function ($) {

 // in this function, you can use the $ which refers to the jQuery object

}(jQuery));
link|improve this answer
So.. why is $ not defined? Is it being overwritten? – JochenJung Jan 13 '11 at 14:53
It's to avoid conflicts with other Javascript libraries such as Prototype. – Tapirboy Jan 24 at 12:58
feedback

Chances are your script is not initialized this way, you'll have to use Drupal.behaviors.YOURTHEMENAME

(function ($) {
Drupal.behaviors.YOURTHEMENAME = {
attach: function(context, settings) {

/*Add your js code here*/
alert('Code');

}

};
})(jQuery);    
link|improve this answer
This one solved my problem . I was using d7. Thanks guus – vishal Jan 24 at 17:48
shouldn't you use }(jQuery)); instead of })(jQuery); on the last line of your code? – scubaFLY Apr 11 at 13:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.