I have thought hard about what library would be best, but any library "X" would be missing a certain feature from library "Y".
What are peoples' thoughts on using mutliple JavaScript libraries simultaneously?
I have thought hard about what library would be best, but any library "X" would be missing a certain feature from library "Y".
What are peoples' thoughts on using mutliple JavaScript libraries simultaneously?
Use jQuery and its plugins. You'll never not have the feature you need :). I don't see anything wrong with using multiple libraries, but it is nice to stay within a single framework...it makes dealing with code and managing a codebase a bit easier.
Quite simply, don't do it. You'll have headaches with:
If you have some specific need that a different library addresses, pull the pieces of that library as needed. It'll save you way more time than it takes to extract what you need.