Can DokuWiki & jQuery play together? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T23:14:34Zhttp://stackoverflow.com/feeds/question/490426http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/490426/can-dokuwiki-jquery-play-together1Can DokuWiki & jQuery play together?Wilco2009-01-29T03:51:58Z2009-09-11T13:35:09Z
<p>I'm having some trouble getting jQuery to play nice with DokuWiki - has anyone already done this successfully?</p>
<p>At the moment, including jQuery reuslts in all sorts of JS functionality breaking, and I'm having trouble tracking down the source of the problem. What are some things to look for that tend to conflict with jQuery?</p>
http://stackoverflow.com/questions/490426/can-dokuwiki-jquery-play-together/490466#4904662Answer by Ben Alpert for Can DokuWiki & jQuery play together?Ben Alpert2009-01-29T04:21:23Z2009-01-29T04:21:23Z<p>You can usually avoid any jQuery conflicts by using the following right after you load <code>jquery.js</code>:</p>
<pre><code>jQuery.noConflict();
</code></pre>
<p>Then, it won't overwrite the <code>$</code> variable, which is most often the source of trouble in these JS library conflicts. You'll need to call jQuery functions using <code>jQuery</code>, though. Examples:</p>
<pre><code>jQuery(function() { ... }); // $(function ...
jQuery(".klass").hide(); // $(".klass" ...
</code></pre>
http://stackoverflow.com/questions/490426/can-dokuwiki-jquery-play-together/490469#4904695Answer by John Resig for Can DokuWiki & jQuery play together?John Resig2009-01-29T04:23:39Z2009-01-29T04:23:39Z<p>I'm not familiar with DokuWiki personally but if something is breaking just when you include jQuery then it's probably a conflict with the '$' variable in jQuery. You can use jQuery's noConflict method to get around that, more information here:
<a href="http://docs.jquery.com/Using_jQuery_with_Other_Libraries" rel="nofollow">http://docs.jquery.com/Using_jQuery_with_Other_Libraries</a></p>
<p>See also this Stack Overflow post:
<a href="http://stackoverflow.com/questions/134572/jquery-prototype-conflict">http://stackoverflow.com/questions/134572/jquery-prototype-conflict</a></p>
http://stackoverflow.com/questions/490426/can-dokuwiki-jquery-play-together/1410903#14109031Answer by Andreas Gohr for Can DokuWiki & jQuery play together?Andreas Gohr2009-09-11T13:35:09Z2009-09-11T13:35:09Z<p>There's also a plugin that adds JQuery to DokuWiki: <a href="http://www.dokuwiki.org/plugin%3Ajquery" rel="nofollow">http://www.dokuwiki.org/plugin%3Ajquery</a></p>