How to address the activated tooltip?
Hello,
I'm looking for a way to address the shown tooltip on the open-event.
- $(document).tooltip({
- open: function(event, ui){
- $(WHATEVER).css("color","red"); // for example
- }});
Actually I want to store the last shown tooltip in a global variable to address it from another function.
I tried it with "this" and "event.target", but it doesn't really work. 
Any suggentions?
Ciao
hasenpfote