jQuery & Prototype Conflict - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T19:58:48Zhttp://stackoverflow.com/feeds/question/134572http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/134572/jquery-prototype-conflict4jQuery & Prototype ConflictDPereyra2008-09-25T17:05:45Z2008-09-27T03:55:47Z
<p>Hi,</p>
<p>I am using the jQuery AutoComplete plugin in an html page where I also have an accordion menu which uses prototype.</p>
<p>They both work perfectly separately but when I tried to implement both components in a single page I get an error that I have not been able to understand.</p>
<p>uncaught exception: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIDOMViewCSS.getComputedStyle]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: file:///C:/Documents and Settings/Administrator/Desktop/website/js/jquery-1.2.6.pack.js :: anonymous :: line 11" data: no] </p>
<p>I found out the file conflicting with jQuery is 'effects.js' which is used by the accordion menu. I tried replacing this file with a newer version but newer seems to break the accordion behavior. </p>
<p>My guess is that the 'effects.js' file used in the accordion was modified to obtain the accordion demo output. I also tried using the overriding methods jQuery needs to avoid conflict with other libraries and that did not work.</p>
<p>I obtained the accordion demo from the following site: <a href="http://www.stickmanlabs.com/accordion/" rel="nofollow">http://www.stickmanlabs.com/accordion/</a> </p>
<p>And the jQuery AutoComplete can be obtained from: <a href="http://docs.jquery.com/Plugins/Autocomplete#Setup" rel="nofollow">http://docs.jquery.com/Plugins/Autocomplete#Setup</a></p>
<p>Has any one else experienced this issue?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/134572/jquery-prototype-conflict/134635#1346355Answer by Tahir Akhtar for jQuery & Prototype ConflictTahir Akhtar2008-09-25T17:16:04Z2008-09-25T17:16:04Z<p>jQuery lets you rename the jQuery function from '$' to something else to avoid namespace conflicts with other libraries. </p>
<p>you can do something like this</p>
<p>var J = jQuery.noConflict();</p>
<p>Details here:
<a href="http://michaelshadle.com/2007/07/03/jquerys-no-conflict-mode-yet-another-reason-why-its-the-best/" rel="nofollow">http://michaelshadle.com/2007/07/03/jquerys-no-conflict-mode-yet-another-reason-why-its-the-best/</a></p>
http://stackoverflow.com/questions/134572/jquery-prototype-conflict/136502#13650233Answer by John Resig for jQuery & Prototype ConflictJohn Resig2008-09-25T22:08:02Z2008-09-25T22:21:23Z<p>There are two possible solutions: There was a conflict with an older version of Scriptaculous and jQuery (Scriptaculous was attempting to extend the native Array prototype incorrectly) - first try upgrading your copy of Scriptaculous.</p>
<p>If that does not work you will need to use <code>noConflict()</code> (as alluded to above). However, there's a catch. Since you're including a plugin you'll need to do the includes in a specific order, for example:</p>
<pre><code><script src="jquery.js"></script>
<script src="jquery.autocomplete.js"></script>
<script>
jQuery.noConflict();
jQuery(document).ready(function($){
$("#example").autocomplete(options);
});
</script>
<script src="prototype.js"></script>
<script src="effects.js"></script>
<script src="accordion.js"></script>
</code></pre>
<p>Hope this helps to clarify the situation.</p>
http://stackoverflow.com/questions/134572/jquery-prototype-conflict/142937#1429374Answer by Fczbkk for jQuery & Prototype ConflictFczbkk2008-09-27T03:55:47Z2008-09-27T03:55:47Z<p>I don't really see the reason for using both libraries at the same time in this case.</p>
<p>You can either use Prototype's (well, Scriptaculous' actually) <a href="http://github.com/madrobby/scriptaculous/wikis/ajax-autocompleter" rel="nofollow">Ajax.Autocompleter</a> and ditch jQuery, or you can use jQuery's <a href="http://docs.jquery.com/UI/Accordion" rel="nofollow">Accordion</a> and get rid of Prototype.</p>
<p>Using both libraries at once is not really a good idea, because:</p>
<ol>
<li>They can cause conflicts.</li>
<li>By including them both you force your users to download them both. Which is not bandwith friendly approach.</li>
</ol>