Andres SK
Andres SK

Reputation: 10974

Modal qTip - hide when ... mouseleave?

im using the modal window qTip. Everything works fin, but i was wondering if it is posible to hide the modal window on either when onMouseout or mouseleave... and how?

this is my current setting:

hide: {
   when: {
      event: 'unfocus'
   }
},

Of course the unfocus only works when clicking outside. Any ideas?

Upvotes: 1

Views: 3125

Answers (2)

michelem
michelem

Reputation: 14590

You can try this too:

hide: {when: {event:'mouseout unfocus'}, fixed: true, delay: 500}

Upvotes: 3

Harold1983-
Harold1983-

Reputation: 3369

hide: {
  when: {
    event: 'mouseout'
  }
}

Upvotes: 0

Related Questions