jQuery: $ namespace conflict with TinyMCE
September 7, 2007 1 Comment
I wanted to add a rich text editor one day, so I was looking at TinyMCE. This is a nicely done editor written in JavaScript. Now I’ve used it before, basically you include the main script, and it changes the textarea elements into a nice editor. I downloaded the 2.1.2 version, and it didn’t work.
Somehow TinyMCE conflicts with jQuery v1.1.3.1 — I used the pack-ed version. Or vice-versa. Anyway, to solve the problem:
jQuery.noConflict(); // use jQuery instead $ from here on
jQuery(document).ready(function() {
// TODO
});
Read more about it here.