Have this: (and no idea where it's coming from)
<script type="text/javascript">
jQuery(document).ready(function()
{
jQuery('.hasTooltip').tooltip({"container": false});
});
</script>
And this:
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery(".deeper").addClass("has-dropdown");
jQuery("ul li ul").addClass("dropdown");
jQuery("ul").removeClass("nav");
jQuery("ul").removeClass("menu");
});
</script>
I think they're causing conflict on something else on the page.
Since I have no idea how to remove the first one, how do I resolve it in the second one?
Like how to remove it?
Background: It's a template page in Joomla CMS. It renders fine. Except when you use the search button. Then the menu goes whacko.
Have gone through everything else over with a fine-tooth comb.
Halp?
If there's no enough info in this post, please let me know.
I'm really hoping that by the virtue of the fact if I'm able to remove the first jQuery, that it will solve the menu's problem.
EDIT
Ok, sorry for not being clearer.
First code quote, I have no idea where it came from, therefore, I can't remove it since it's auto-generated.
Second code quote is mine.
I was hoping for guidance in getting rid of the first one.
Any ideas how since it's auto-generated?