prototype and jQuery peaceful co-existence? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T11:45:59Z http://stackoverflow.com/feeds/question/415550 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/415550/prototype-and-jquery-peaceful-co-existence 3 prototype and jQuery peaceful co-existence? Alastair 2009-01-06T05:17:54Z 2009-01-23T09:21:31Z <p>I know very little about JavaScript but despite this I'm trying to cobble something together on my wordpress blog. It's not working, and I don't know how to resolve it, and hey, that's what StackOverflow is for, right?</p> <p>Firstly, the error message is:</p> <pre><code>Error: element.dispatchEvent is not a function Source File: http://.../wp-includes/js/prototype.js?ver=1.6 Line: 3936 </code></pre> <p>It happens on page load. My page load handler is registered thusly:</p> <pre><code>Event.observe(window, 'load', show_dates_as_local_time); </code></pre> <p>The error goes away if I disable some other plugins, and this (plus googling) led me to conclude that it was a conflict between prototype and jQuery (which is used by some of the other plugins).</p> <p>Secondly I'm following the wordpress recommended practice of using <a href="http://codex.wordpress.org/Function_Reference/wp_enqueue_script" rel="nofollow"><code>wp_enqeue_script</code></a> to add a dependency from my JavaScript to the Prototype library, as follows:</p> <pre><code>add_action( 'wp_print_scripts', 'depo_theme_add_javascript' ); function depo_theme_add_javascript() { wp_enqueue_script('friendly_dates', 'javascript/friendly_dates.js', array('prototype')); } </code></pre> <p>Now I'm also aware that there are some potential conflicts between jQuery and Prototype which are resolved using the jQuery <code>noConflicts</code> method. I've tried calling that from various places but no good. I don't <em>think</em> this is the problem because a) the <code>noConflict</code> function relates solely to the <code>$</code> variable, which doesn't seem to be the problem here, and b) I would <em>expect</em> wordpress to sort it out for me because it can...</p> <p>Lastly, using the Venkman debugger I've determined that the <code>element</code> referenced in the error message is indeed an <code>HTMLDocument</code> but also does lack a <code>dispatchEvent</code>. Not sure how this could happen, given it's a standard DOM method?</p> http://stackoverflow.com/questions/415550/prototype-and-jquery-peaceful-co-existence/415626#415626 4 Answer by Kent Fredric for prototype and jQuery peaceful co-existence? Kent Fredric 2009-01-06T06:27:05Z 2009-01-06T08:11:12Z <p>There is a nasty trick many libraries do that I've taken a distinct liking to, and it looks like prototype is one of these. </p> <p>Mootools does this, If I am right, and it involves overloading many of the prototypes on the basic classes, monkey patching them. </p> <p>And likewise, I similarly encountered strange behaviour when mootools and jQuery were present, usually jQuery dying because it was calling some object method which had been somehow overloaded/monkey patched by Mootools. </p> <p>Also, mysteriously, taking mootools out of the script usage list, resulted in <em>everything</em> running much faster, which I concluded was due to less object pollution. </p> <p>Now I could be wrong, but I concluded from my experience such libraries just simply don't like to co-exist with each other, and seeing how mootools code seemed to me to degrade speed at which normal things were done, I sucked up and ported all mootools based code to jQuery ( A time consuming deal I assure you ), and the result, was code that was <em>fast</em> <em>and</em> didn't have weird errors that were unexplainable. </p> <p>I recommend you consider migration as at least <strong>One</strong> of your options. </p> <p><strong>One More thing, when writing:</strong> </p> <p>I tend to use this syntax with all my jQuery driven code, for a bit of safe encapsulation in the event somebody breaks '$' somehow. </p> <p><strong>Runtime Code</strong> This waits for document.ready before executing: </p> <pre><code> jQuery(function($){ code_with_$_here; }); </code></pre> <p><strong>jQuery Plugins</strong></p> <pre><code>(function($){ code_with_$_here; })(jQuery); </code></pre> <p>Using these will make it easier for people <em>using</em> any jQuery you happen to write to be able to use it without much of a conflict issue. </p> <p>This will basically leave them to make sure their code isn't doing anything really magical. </p> http://stackoverflow.com/questions/415550/prototype-and-jquery-peaceful-co-existence/415657#415657 5 Answer by Soviut for prototype and jQuery peaceful co-existence? Soviut 2009-01-06T06:48:55Z 2009-01-06T06:48:55Z <p>Its worth reading this article on the JQuery site about <a href="http://docs.jquery.com/Using_jQuery_with_Other_Libraries" rel="nofollow">Using JQuery With Other Libraries</a>. It deals with more than just the noConflict option.</p> http://stackoverflow.com/questions/415550/prototype-and-jquery-peaceful-co-existence/416367#416367 2 Answer by Ionut Staicu for prototype and jQuery peaceful co-existence? Ionut Staicu 2009-01-06T12:42:09Z 2009-01-06T12:42:09Z <p>I think you should search well because all jQuery plugins has a prototype version and all prototype plugins has a jQuery version. If you really don't find what you look and you can't use only one library, take a look <a href="http://docs.jquery.com/Core/jQuery.noConflict" rel="nofollow">here</a> at </p> <pre><code>jQuery.noConflict(); </code></pre> <p>But again, i think it make no sense to load over 15-20kb for each library :)</p> http://stackoverflow.com/questions/415550/prototype-and-jquery-peaceful-co-existence/433856#433856 0 Answer by Alastair for prototype and jQuery peaceful co-existence? Alastair 2009-01-11T22:23:21Z 2009-01-11T22:23:21Z <p>Thanks for the suggestions all. In the end I think Kent's explanation was the closest, which basically amounted to "Prototype is broken". (Sorry if I'm summarizing you incorrectly :)</p> <p>As for the <code>jQuery.noConflict</code> option - I already mentioned this in the question. It makes a difference <em>when</em> you run this method, and I have very little control over that. As I said, I have tried running it in a couple of different places (specifically the page header and also from my script file), to no effect. So, much as we'd all like it to be, "just use <code>noConflict</code>" is <em>not</em> an answer to this question, at least not without additional information.</p> <p>Besides, <code>jQuery.noConflict</code> <em>seems</em> to be about the <code>$</code> variable, and the code around the error point does not deal with that variable at all. Of course they could be related indirectly, I haven't tracked it down.</p> <p>So basically I ended up rewriting the script using jQuery instead of Prototype, which actually had its own problems. Anyway I've published the whole <a href="http://girtby.net/archives/2009/01/07/monkeying-with-javascript/" rel="nofollow">war story on my blog</a>, should you be interested.</p> http://stackoverflow.com/questions/415550/prototype-and-jquery-peaceful-co-existence/472332#472332 0 Answer by Janosch for prototype and jQuery peaceful co-existence? Janosch 2009-01-23T09:21:31Z 2009-01-23T09:21:31Z <p>Hi, i had the same problem, but noConflict was the solution in my case. I simply put the line</p> <pre><code>jQery.noConflict(); </code></pre> <p>at the end of the <code>jquery.js</code> file, and changed all code that used jQuery with the <code>$</code> function to the <code>jQuery</code> function. The part based on the prototype framework was left untouched. Then i loaded the <code>jquery.js</code> as the first JS-File in my base-template (this is a bit ugly, but since the file will be in the browser-cache after the first time, i think it is ok) and it worked.</p>