Hello,
I would like to include the jquery ui Tooltip library in my APEX application. I've read the below article, and it explains that you can include additional jquery libraries that aren't included by default:
http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21674/app_comp001.htm
For example, to include jquery ui Tabs you would add the following to your HTML header:
<link href="#IMAGE_PREFIX#libraries/jquery-ui/1.8.14/themes/base/minified/jquery.ui.tabs.min.css" rel="stylesheet" type="text/css" /> <script src="#IMAGE_PREFIX#libraries/jquery-ui/1.8.14/ui/minified/jquery.ui.tabs.min.js" type="text/javascript"></script>
I can also nav to http...i/libraries/jquery-ui/1.8.14/ui/minified/jquery.ui.tabs.min.js to view the file and confirm it's there. However, when I try to view tooltip (by changing "tabs" to "tooltip" or "tooltips") it doesn't find it (I get "not found" error). And I can't load the directory to see what's there since I don't have access.
Is there a listing of available jquery libraries to include? Where do I find tooltip? Do I have to load it myself?
Thanks,
Steve