jQuery & Prototype Conflict - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T19:58:48Z http://stackoverflow.com/feeds/question/134572 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/134572/jquery-prototype-conflict 4 jQuery & Prototype Conflict DPereyra 2008-09-25T17:05:45Z 2008-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#134635 5 Answer by Tahir Akhtar for jQuery & Prototype Conflict Tahir Akhtar 2008-09-25T17:16:04Z 2008-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#136502 33 Answer by John Resig for jQuery & Prototype Conflict John Resig 2008-09-25T22:08:02Z 2008-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>&lt;script src="jquery.js"&gt;&lt;/script&gt; &lt;script src="jquery.autocomplete.js"&gt;&lt;/script&gt; &lt;script&gt; jQuery.noConflict(); jQuery(document).ready(function($){ $("#example").autocomplete(options); }); &lt;/script&gt; &lt;script src="prototype.js"&gt;&lt;/script&gt; &lt;script src="effects.js"&gt;&lt;/script&gt; &lt;script src="accordion.js"&gt;&lt;/script&gt; </code></pre> <p>Hope this helps to clarify the situation.</p> http://stackoverflow.com/questions/134572/jquery-prototype-conflict/142937#142937 4 Answer by Fczbkk for jQuery & Prototype Conflict Fczbkk 2008-09-27T03:55:47Z 2008-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>