I am working on a project where I am using Twitter Bootstrap Framework. I am also using the jQuery UI library. The problem is that in these two libraries there are a few functions with the same name, eg tooltip. Now when I apply this function to any element, the function with the last declaration is being applied.
For example if I include the jQuery UI library after the Bootstrap library, and use
$("element").tooltip();
The tooltip() function in jQuery UI is called. I know I can achieve the desired result by removing the given function from one of the library or by rearranging the position of libraries. But I wanted to know whether there is any way to specify which library's function is to be called when there are two libraries sharing the same function name.