Hi again
As a lot of other Joomla users I often run into jQuery conflict when using other plugins, components or modules together with Joomla and/or Gavick.
At the moment I use:
Joomla 2.5.9
BreezingForms 1.8.2
And I have a jQuery conflict with result not loading Gavick login popup or video view style.
If you look at Gavick demo:
http://demo.gavick.com/joomla25/appsite/You can see in header that "someone" loads:
- Code: Select all
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js"></script>
If I look at my website code I can see that Gavick GK5 Tabs can load jQuery version 1.7
/modules/mod_tabs_gk5/helper.php line 33
- Code: Select all
} else if($this->config['include_jquery'] == 1) {
// if the user specify to include the jQuery framework - load newest jQuery 1.7.*
$doc = JFactory::getDocument();
$doc->addScript('https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js');
In my current Gavick StartUp template "someone" loads jQuery 1.7 and I would like it to be jQuery 1.9 to be compatible with BreezingForms.
I can't find out from where in <head> this load comes.
Any suggestions?