HI All,
I read all the related post but i think i am missing something.
My page structure is -
1.load Motools library in Joomla.
code is JHTML::_('behavior.tooltip');
JHTML::_('behavior.mootools');
JHTML::_('behavior.formvalidation');
2 Then load the Jquery library
code is
<script language="javascript" src="<?=$this->baseurl;?>/includes/js/jquery/jquery-1.3.2.js"></script>
<script type="text/javascript" src="<?=$this->baseurl;?>/includes/js/jquery/customjsfile.js"></script>
3.then there are few JS function which uses Jquery Functionalities
code is
function abc() {//..stuffs uses jquery}
function xyz() {//..another function which uses jquery}
4 load body of the page
5 At the end again few lines of JS code . Which again use Jquery
code is
<script language="javascript">
$("#dialog").html(newHTML);
</script>
This is how my page is. Now I am getting the Conflict errors in Motools & Jquery.
How Do I Resolve It.
Please HELP!