Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ignore mouseover/mouseout? #62

Closed
remisture opened this issue Mar 23, 2017 · 2 comments
Closed

Ignore mouseover/mouseout? #62

remisture opened this issue Mar 23, 2017 · 2 comments

Comments

@remisture
Copy link

Is there a way to show a tooltip "always", until I manually close it? What I mean is, in this case, I don't want the tooltip to show/hide when I hover the connecting element.

@christian4423
Copy link

http://tipso.object505.com/ I would look into the "Show tipso on page load" example and mix it with the "Interact with tipso tooltip" and the "Click to show/hide tipso" examples.

@remisture
Copy link
Author

I did something like this:

var init = function () {
   var tooltip = $('.tooltip').tipso({
      position: 'bottom',
      content: 'Some content'
   });

   tooltip.tipso('show');
   tooltip.off('mouseover.tipso');
   tooltip.off('mouseout.tipso');
};

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants