vote up 1 vote down star
1

I'm having some trouble getting jQuery to play nice with DokuWiki - has anyone already done this successfully?

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?

flag

3 Answers

vote up 5 vote down check

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: http://docs.jquery.com/Using_jQuery_with_Other_Libraries

See also this Stack Overflow post: http://stackoverflow.com/questions/134572/jquery-prototype-conflict

link|flag
2  
AFAIK, the only items added to the global namespace are $ and jQuery (which are synonyms). Using noConflict() reduces this to jusy jQuery. Hopefully, DokuWiki doesn't reference anything named jQuery in the global namespace ;) – Adam Bellaire Jan 29 at 21:54
vote up 2 vote down

You can usually avoid any jQuery conflicts by using the following right after you load jquery.js:

jQuery.noConflict();

Then, it won't overwrite the $ variable, which is most often the source of trouble in these JS library conflicts. You'll need to call jQuery functions using jQuery, though. Examples:

jQuery(function() { ... }); // $(function ...
jQuery(".klass").hide();    // $(".klass" ...
link|flag
vote up 1 vote down

There's also a plugin that adds JQuery to DokuWiki: http://www.dokuwiki.org/plugin%3Ajquery

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.