Questions tagged [tooltipster]

A jQuery plugin by Caleb Jacob enabling you to create semantic tooltips enhanced with the power of CSS.

A jQuery plugin by Caleb Jacob enabling you to create semantic tooltips enhanced with the power of CSS.

https://iamceege.github.io/tooltipster/

186 questions
20
votes
0 answers

image map area with panzoom & tooltip

There is a simple map of the image with the tooltip when clicking on the area and the possibility of in / out this map: var $section = $('.plan'); $('.panzoom').panzoom({ $zoomIn: $section.find(".zoom-in"), $zoomOut:…
SVE
  • 1,555
  • 4
  • 30
  • 57
20
votes
2 answers

How to display messages from jQuery Validate plugin inside of Tooltipster tooltips?

I'd like to use the Tooltipster plugin to display form errors generated by the jQuery Validate plugin. jQuery for Validate plugin: $(document).ready(function () { $('#myform').validate({ // initialize jQuery Validate // other…
Sparky
  • 98,165
  • 25
  • 199
  • 285
9
votes
1 answer

Sass select parent if child has a specific class

Is there any sort of way to select a parent element in sass if the child contains a certain class? Basically I am using the tooltipster plugin and have this issue HTML
S_R
  • 1,818
  • 4
  • 27
  • 63
9
votes
2 answers

Add line break to tooltip generated by tooltipster plugin

I've recently tried using a new plugin for tooltips because I like the functionality. However I have come into an issue, I do not know how to add new lines so my tooltips don't just run across the whole page. I tried some of the solutions I read on…
Mr.Smithyyy
  • 2,157
  • 12
  • 49
  • 95
7
votes
2 answers

Using Tooltipster Jquery Plugin in Angular js

I have a table , on hover on a particular cell i need to show the tool tip with different values based on the cell it hovered . I want to know how to use the plugin in Angular way and I'm facing problems in existing design. Problem: -Its not working…
Vigneshwarr
  • 125
  • 1
  • 12
6
votes
4 answers

[Tooltipster Plugin]- Know if div already have tooltipster

I'm using this plugin http://iamceege.github.io/tooltipster/. It is possible know if a HTML already have the tooltipster initialized? I wanna know because sometimes i need to change the text of the tooltip, and for do that, i need to destroy the…
Ricardo Rocha
  • 14,612
  • 20
  • 74
  • 130
6
votes
1 answer

JQuery Tooltipster hiding element it's attached to

I am trying to use JQuery Tooltipster in my Asp.net MVC application. The content I am trying t add the tooltip to is generated dynamically through JavaScript. View: var engName = document.getElementsByClassName("dhx_matrix_scell"); for (var…
Stephen Sugumar
  • 545
  • 3
  • 9
  • 35
5
votes
2 answers

jquery tooltipster plugin, hide all tips?

if I have bound tooltipster to input elements and to a diferent elements like a div, is there a way I can hide all in a single call? So far I know I can to this by hand with: $('form input').tooltipster('hide'); $('#mydiv').tooltipster('hide');
Ivan Juarez
  • 1,413
  • 4
  • 21
  • 30
5
votes
3 answers

Tooltipster does not work in a generated content

I have installed Tooltipster on my website, but it does not work for content added dynamically. You can see it in the "SORT GAMES BY YOUR CHOICE (NEWEST GAMES BY DEFAULT)" box, when I select sort by "newest first", "most popular," etc... when the…
5
votes
1 answer

jQuery Validation Plugin and Tooltipster Plugin error

I'm trying to customize the error messages that user's get by using the Tooltipster plugin and I run into the following problem: You called Tooltipster's "content" method on an uninitialized element My HTML code:
kalpetros
  • 983
  • 3
  • 15
  • 35
5
votes
3 answers

How to get jquery Tooltipster Plugin to work for newly created DOM elements?

I'm using the Tooltipster plugin http://calebjacob.com/tooltipster/ which is great but I have dynamically generated content that's being inserted into the DOM. It doesn't seem like tooltipster is detecting those as it's being set to trigger on…
Phillip Chan
  • 993
  • 7
  • 17
5
votes
2 answers

Disable Tooltipster Tooltip on button click?

I am using the Tooltipster tooltip on my website. I want to know, is there a way to disable a Tooltipster tooltip that is showing, on a mouse button click ? Like suppose I have a form and the Submit button has a Tooltipster tooltip on it which shows…
Ahmad
  • 12,886
  • 30
  • 93
  • 146
4
votes
2 answers

JQuery Tooltipster plugin does not show the tooltip with a hyperlink in the html content

I followed the official document's instructions at: http://iamceege.github.io/tooltipster/#htmlcontentalt Everything worked fine. The only extra thing that I added wa an 'a' tag inside the content as follows: Here is the html code:
1man
  • 5,216
  • 7
  • 42
  • 56
4
votes
0 answers

Tooltipster appear on right side

I would like to get my tool tip to appear on the right of the origin but I seem to be having trouble to get this to do so!. Here is the code that I am using:
Ruttyj
  • 853
  • 2
  • 11
  • 18
4
votes
2 answers

How can I get tooltipster to trigger on mouseup and use selected text in ajax function?

I'm using this code to show a translation of the text in a span as a tooltip on click: $(document).ready(function () { $('.word').tooltipster({ trigger: 'click', touchDevices: true, content: 'Loading...', …
webmagnets
  • 2,266
  • 3
  • 33
  • 60
1
2 3
12 13