Tooltip not displaying initially on page load

Tooltip not displaying initially on page load

Hello all,

My tooltip works great except that when I load the page initially (first time around) and I mouseover anywhere on the table the tooltip does not show up. I have to move away from the table and then back to it and then it appears. What may be causing this?

This is what I am doing, code wise:

  1. $("#myTable").mouseover(function() {
  2.       $(this).attr("title", "This is a test");
  3.       $(this).tooltip({
  4.             fixed:true,
  5.             offset: [10,-40],
  6.             effect: "slide"
  7.       });
  8.       $(this).removeAttr("title");
  9. });
Any help is greatly appreciated.

Thanks in advance