Hello,
Joomla use mootools as a javascript framework and our component booking use it as well. I understand that many developers use jQuery instead of it, but there is necessary to do it in non conflict mode. It is just important for components used in Joomla if Joomla's basic framework can be in conflict with jQuery scripts.
But you have this problem and need both components, so what now?
This will turn jquery to non conflict mode:
1. You need to load jquery script before mootools.
2. modify your jquery script (file jquery.min.js) and add this row at the end: jQuery.noConflict();
This will help to your jquery work in non conflict mode:
3. You have to add these rows before and after jquery scripts:
(function($){ // before jquery
//jquery scripts
})(jQuery); // after jquery
It means that $ will be used for jQuery between these rows.