Can DokuWiki & jQuery play together? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T23:14:34Z http://stackoverflow.com/feeds/question/490426 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/490426/can-dokuwiki-jquery-play-together 1 Can DokuWiki & jQuery play together? Wilco 2009-01-29T03:51:58Z 2009-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#490466 2 Answer by Ben Alpert for Can DokuWiki & jQuery play together? Ben Alpert 2009-01-29T04:21:23Z 2009-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#490469 5 Answer by John Resig for Can DokuWiki & jQuery play together? John Resig 2009-01-29T04:23:39Z 2009-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#1410903 1 Answer by Andreas Gohr for Can DokuWiki & jQuery play together? Andreas Gohr 2009-09-11T13:35:09Z 2009-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>