Brian Cray
Brian Cray
Not sure, haven't seen any others experiencing 404 errors... Is redirect.php at the same location as the rest of the files? Is redirect.php at the root?
I guess because I didn't want people styling the wrong thing/breaking the functionality. But I guess it could be an undocumented feature. Will add.
Can you try it now?
Try: ``` javascript $('.hastip').tooltipsy(); $(document).click(function () { $('.hastip').data('tooltipsy').hide(); }); ```
Go ahead and close it if this fixes your issue. Also, instead of hide() you can do destroy() if you want the tooltip removed permanently from DOM.
something like this may work: ``` javascript $(document).click(function (e) { if (e && e.target && $(e.target).hasClass('tooltipsy')) { return; } $('.tooltipsy').parent().hide(); }); ```
What is the scenario in which you need to add position:fixed? I ask because the tooltip wrapper will take care of positioning itself.
Ahh I see the problem. I'll see if I can find a fix =)
I think I have a solution, just haven't done major testing yet...
you say they work with offset: [-1, 1] ?