Support

Forums

Contact Me

Joomla Mootools and jQuery Compatibility

In this series of post I will outline some common techniques to help Joomla extensions development.

As you know Joomla is shipped with Mootools library which assign $ also to Ajax. Here is 2 tips that will allow you to use jQuery scripts without any modifications (most of the time you will find tips to assign jQuery to something else than $ and rewrite your scripts)

First it is recommended to include always mootools first to avoid jQuery conflict issues

JHTML::_('behavior.mootools');
$document = JFactory::getDocument();
$document->addScript(JURI::root() . "media/com_cedtag/js/jquery.1.7.2.min.js");

then to run jQuery in noConflict mode. Note that here I do not assign jQuery to any alias.

$document->addScriptDeclaration("jQuery.noConflict();");

Till here, this is what you will find on all Joomla forums, posts over the internet. The last tips is what make the difference!

Instead of using a different alias for the jQuery object (when using noConflict), you can write your jQuery code by wrapping it all in a closure. This can be done in the document.ready function

$script = "jQuery(function($) { $();

});"; $document->addScriptDeclaration($script);

This way you are not force to rewrite your scripts to use another alias (replacing $ with jquery alias for example in all your scripts). This make inclusion of jQuery really easy!

Happy Coding!

You might also like:
Add2Home 1.7.1 for J3.0 Released
46 days ago
Add2Home 1.7.1 for J3.0 Released
This small plugin for Joomla! add a message inviting iPhone/iPad users to add the web application
cedSmugmug 2.6.2  for joomla J2.5 and J3.0 released
48 days ago
cedSmugmug 2.6.2 for joomla J2.5 and J3.0 released
CedSmugmug  has been updated to version 2.6.2 and correct one bugs and contains some nice fea
cedphotofeed 2.6.2 for joomla J2.5 and J3.0 released
48 days ago
cedphotofeed 2.6.2 for joomla J2.5 and J3.0 released
This extension for Joomla  2.5 and Joomla 3.0 allow you to inline a set of images from your f
cedPhotofeed 2.6.1 for J2.5 Released
55 days ago
cedPhotofeed 2.6.1 for J2.5 Released
This extension for Joomla! 2.5 allow you to inline a set of images from your favorite online galle
Schema Validation for Joomla 2.5 Extensions
62 days ago
Schema Validation for Joomla 2.5 Extensions
I’ve created from scratch, all Joomla extensions XSD. Without them, Joomla accept any entry in
cedTag 2.6.2 for J2.5 released for Joomla 2.5
75 days ago
cedTag 2.6.2 for J2.5 released for Joomla 2.5
cedTag provide a useful way to group related posts together and to quickly tell readers what a pos
blog comments powered by Disqus

Donations

Thank You for supporting my work