Importing jQuery into Joomla

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): … Read more