I am trying to use the .tooltip() that I found from the following: Jquery-ui tooltip. What I have is a rails app that has some information in a table. In separate cells. Cur
Try doing something like this. For tooltip to work, you will require title set for the control.
title
HTML
JavaScript
$(document).ready(function(){ $("#bookingTd").tooltip(); });
Also make sure you load jQuery first and then the tooltip plugin.
Hope this helps you.