Many times while using WordPress, if we try to use “$” to access jQuery, we get an error the “$ is not defined”. This happens because the jQuery library which is included in WordPress loads in “no conflict” mode. In the no conflict mode jQuery returns the control of “$”, and it is no longer accessible as function, variable or alias for jQuery. WordPress does this in order to prevent compatibility problems with other JavaScript libraries that can be loaded.
To solve this we can use “jQuery” instead of “$”. So, instead of using the standard code with “$”
$(document).ready(function(){ $(#selector) ... });
we can use the following code, which uses “jQuery” instead of “$”
jQuery(document).ready(function(){ jQuery(#selector) ... });
If you want to use the default “$” symbol, it can be done by wrapping the code within a function
(function($) { // You can use $() inside of this function $(#selector) ... })(jQuery);
If you want to execute the jQuery code on document ready you can use the following instead of the above code:
jQuery(document).ready(function($) { // You can use $() inside of this function $(#selector) ... });
Related Articles:
Hi,
I’m having a problem with jquery multiselct . I’m not very sure if its because of $.
I have the following piece of code in a file .
$(“#test”).multiselect({
multiple: false,
header: false,
selectedList: 1,
minWidth: 120,
height: 155
});
It works fine until I make a call to another jsp where i’m loading the jquery js files.
I tried replacing $ with jQuery but it did not work.
the error in the above case i’m getting is $(…).multiselect is not a function
Hi rb, I am not sure what is causing this issue on your site. It might be that the library that you are using, is not compatible with something else on your site.
Thanks so much ! Its helped and solved my problem in few seconds ! 🙂
Yes that ehat I experienced. Glad that now I get the answer.