I use jquery for a module. My joomla template have an integrated jquery menu. So they conflict with each other.
Is there a way to solve this problem. Following the s
did you mean that your joomla loaded 2 kind of jquery at the same time ? 1st your menu load jquery and then your module load jquery ?
here is the solutions: In joomla templates, we can overriding the module or component views (I assume you must be using joomla 1.5.x right?)
in your templates create a directory called html/ eg: templates/yourTemplate/html/
copy file from modules/mod_yourMenu/tmpl/.* into your your template html (templates/yourTemplate/html/mod_yourMenu/) --> * you don't need to add tmpl/ *
edit the php files inside and delete all tag that load jquery
do the step 1-3 for modules that using jquery.
edit your template, put tag to load latest version of jquery.
it should work now :)