Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question

4 Answers

up vote 0 down vote accepted

use jQuery instead of $ and

give

jQuery.noConflict();

jQuery.noConflict

Many JavaScript libraries use $ as a function or variable name, just as jQuery does. In jQuery's case, $ is just an alias for jQuery, so all functionality is available without using $. If we need to use another JavaScript library alongside jQuery, we can return control of $ back to the other library with a call to $.noConflict():

share|improve this answer
Thanks a Lot! It Works! – user251336 Jan 22 '10 at 7:36
I would Like to share thing here - the for-in loop returns some strange o/p. But I managed to overcome it by first taking array.length in a variable then use the for loop to iterate over an array. – user251336 Jan 22 '10 at 9:56

Please see:

Using JQuery with other libraries.

share|improve this answer

jQuery.noConflict(), this is what you need.

 <html>
 <head>
   <script src="prototype.js"></script>
   <script src="jquery.js"></script>
   <script>
     jQuery.noConflict();

     // Use jQuery via jQuery(...)
     jQuery(document).ready(function(){
       jQuery("div").hide();
     });

     // Use Prototype with $(...), etc.
     $('someid').hide();
   </script>
 </head>
 <body></body>
 </html>

source: http://docs.jquery.com/Using_jQuery_with_Other_Libraries

share|improve this answer

See this page. It seems to be answered there

http://groups.google.com/group/jquery-en/browse_thread/thread/3dabd31a8ab60505?pli=1

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.