Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Importing jQuery into Joomla

I have been a Joomla developer for almost an year now. I have been struggling to import jQuery into joomla everyday. Joomla comes with mootools. When I import jQuery it crashes. Also when I create modules I have to import jQuery into each module which makes to site slow. Sometimes it makes the whole site crashes. I want both mootools and jquery to work hand in hand so I can use both without any crashes.

What's the best way to import jQuery into Joomla ? Is there a specific place where the import should be done to use one jquery library site-wide(both backend and frontend) ?

Thanks

like image 721
Techie Avatar asked Sep 18 '12 05:09

Techie


2 Answers

This is the code we use to ensure only 1 copy of jQuery is imported. It simply checks to see if jQuery is already being imported and if not, then we import it :)

Joomla 2.5

<?php
  $app = JFactory::getApplication();
  if (!$app->get('jquery'))
  {
     $app->set('jquery', true);
     JFactory::getDocument()->addScript(JUri::root() . 'templates/template_name/js/jquery.js');
  }
?>

Joomla 3.x (no conflict mode):

JHtml::_('jquery.framework');

Joomla 3.x (normal mode):

JHtml::_('jquery.framework', false);

You need to insert this code into the index.php of your template, preferably near the top so you remember where it is. If you do not wish to override your template's index.php file, then you can also develop a small Plugin

Update:

As Bobby stated. A lot of extensions include their own copy of jQuery and a lot of them don't use this method and thus causes conflicts. All I know is that any good developer should know that multiple jQuery libraries causes conflicts and should use this code.

like image 61
Lodder Avatar answered Oct 20 '22 01:10

Lodder


This is a great plugin.

http://extensions.joomla.org/extensions/core-enhancements/performance/jquery-scripts/18327

This plugin is meant to help clean and resolve front and back end issues when using instances of jQuery alongside the Mootools libraries.

WHAT IT DOES OUT-OF-THE BOX

  • calls jQuery and jQuery UI libraries from the Google CDN (with or without protocol) - but you can do it locally too,
  • places jQuery libraries after MooTools calls for perfect compatibility,
  • adds the noConflict() code alongside the jQuery library call,
  • strips out extra jQuery and jQuery UI libraries, including the noConflict() calls added by other modules or plugins,
  • lets you choose jQuery UI basic styling or custom theme.

WHAT YOU CAN TWEAK

  • disable MooTools libraries tentatively in the frontend,
  • enable or disable the plugin in specific portions of the site, from template to single page,
  • use reporting to get feedback on what the plugin engine has done,
  • add or remove scripts and stylesheets,
  • strip blank lines left by the modifications made to the page,
  • prevent some libraries to be stripped out,
  • modify the way the engine works by default (do not add or remove noConflict() code...),
like image 35
Techie Avatar answered Oct 20 '22 01:10

Techie