i have a website that uses mootools and i want to add a jquery plugin to create a chat like FB. before that, i want to know if开发者_StackOverflow mootools an jquery can coexist together or is better to have them in different pages.
The short answer would be yes.
The longer one is that you have to tell jQuery not to use the $ as a function name. This can be done with
jQuery.noConflict();
精彩评论