Title: Possible Bug: tooltip not shown in Edge Post by: Oliver on December 09, 2024, 10:38:23 AM Hello, I encounter a strange problem: I've defined several tooltips in my page, located in different containers.
The tooltips have an addtitional class "tt" and are initialized as following: $(".tt").tooltip({ trackMouse: true, content: 'test',zIndex: 99999 }); When using Firefox or Internet Explorer, the tooltips work as expected. But in Chrome and Edge, the tooltips are not displayed. When inspecting, .tooltip("tip").css("left") and .tooltip("tip").css("top") each show '-100000px' As mentioned, using the same code, in Firefox or Internet Explorer, the coordinates are correct and the tooltips are shown properly What can be the reason ? TX and kind regards Title: Re: Possible Bug: tooltip not shown in Edge Post by: jarry on December 10, 2024, 07:01:12 PM This example works fine.
Code: <!DOCTYPE html> If your issue continues, please show an example to demonstrate your issue. |