Tooltips are a GUI (Graphical User Interface) element which typically pops up when the mouse pointer is hovering over an item in the GUI and provides some contextual information or clarification.
178
votes
3answers
41k views
Creating a Radial Menu in CSS
How do I create a menu which looks like this...
Link to PSD
I don't want to use the PSD images. I would prefer using icons from some package like FontAwesome and have the backgrounds/css generated ...
57
votes
6answers
91k views
jQuery override default validation error message display (Css) Popup/Tooltip like
I'm trying to over ride the default error message label with a div instead of a label. I have looked at this post as well and get how to do it but my limitations with CSS are haunting me. How can I ...
50
votes
7answers
8k views
How can I create a “tooltip tail” using pure CSS?
I just came across a neat CSS trick. Check out the fiddle...
http://jsfiddle.net/duZAx/1/
This creates a little arrow/triangle-like effect, a "tooltip tail". This blows my mind! I'm really ...
30
votes
5answers
40k views
How to add a tooltip to a div
I have a div tag as follows:
<html>
<head></head>
<body>
<div>
<label>Name</label>
<input type="text"/>
...
26
votes
7answers
6k views
Tooltips in the era of touch
Tooltips are an incredibly useful interface paradigm to know an application. They are the mapping between the visual control and the application specific action associated to that control. the user ...
24
votes
4answers
6k views
Change Twitter Bootstrap Tooltip content on click
I have a tooltip on an anchor element, that sends an AJAX request on click. This element has a tooltip (from Twitter Bootstrap). I want the tooltip content to change when the AJAX request returns ...
23
votes
7answers
19k views
Forcing a WPF tooltip to stay on the screen
I have a tooltip for a Label and I want it to stay open until the user
moves the mouse to a different control.
I have tried the following properties on the tooltip:
StaysOpen="True"
and
...
22
votes
4answers
16k views
C#: How do I add a ToolTip to a control?
I have some controls that I would like to display a ToolTip for when the mouse is hovering over it. How can I do this? I would like to know how to do this properly in code, but also in the designer ...
20
votes
2answers
649 views
Get Win32 legacy control's tooltip text programmatically
I would like to get the tooltip text for win32 legacy control (not WPF controls that inherently support UI Automation).
What I have done:
Given a button of interest, I've got its ...
19
votes
7answers
19k views
Is it possible to format an HTML tooltip?
Is it possible to format an HTML tooltip?
E.g. I have a DIV with attribute title="foo!". When I have text-size of my browser zoomed in or out in, the text size of the tooltip remains unchanged. Is ...
17
votes
2answers
9k views
How to change tooltip text for google chart api?
http://code.google.com/apis/chart/
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
// Load the Visualization API and ...
16
votes
14answers
14k views
Recommendations for jQuery tooltips
I am looking for tooltip plugins for jQuery that would allow for the following type of behavior.
<a href="somewhere.html">
<span>
<img src="someimage.jpg" style="display: none;" ...
15
votes
6answers
11k views
Windows Forms ToolTip will not re-appear after first use
I have a Windows Forms C# application where I would like to use a tooltip on one of the text boxes. I initialize the tool-tip in the constructor of the Form class, and it works the first time. So when ...
15
votes
4answers
10k views
How to do a tooltip on an SVG generated by Raphael
I'm doing a bit of a pedagogical exercise, converting XML to SVG with XSLT, Javascript and Raphael. I'm sure it's the hard way...but it's educational.
The problem I've run into is creating tooltips. ...
15
votes
1answer
710 views
Native hints/tooltips under Vista/7 with Delphi7?
I'm trying to reproduce native hints/tooltips under Windows Vista/7 using Delphi7.
I've found a really nice component which could solve the issue:
...
13
votes
6answers
28k views
google maps v3 marker mouseover tooltip
I want to put a tooltip made myself with divs when the mouse is over a marker, but I don't know how to get the screen position to put the div on the correct position, here is my code:
...
13
votes
2answers
716 views
Visual Studio Free addin or resharper plugin to show constant value in tooltip
Is there a free addin or resharper plugin that will let me see the actual value of a constant value when you hover over a reference to it ?
Since the compiler forces const fields or properties to be ...
12
votes
3answers
3k views
jQuery Select All Elements That Have a Title
I need to apply a tooltip plugin to a bunch of different elements on my page. The only common property to work with a jQuery selector is that they all have a title property set.
I tried ...
12
votes
3answers
6k views
How can I add a hint or tooltip to a label in C# Winforms?
It seems that the Label has no Hint or ToolTip or Hovertext property. So what is the preferred method to show a hint, tooltip, or hover text when the Label is approached by the mouse?
12
votes
4answers
4k views
HTML - how can I show tooltip ONLY when ellipsis is activated
I have got a span with dynamic data in my page that contain ellipsis. Meaning:
<span style='text-overflow: ellipsis; overflow : hidden; white-space: nowrap;
width: ...
11
votes
7answers
14k views
How to specify a ToolTip for a control in a Style from XAML?
I'm using a the WPF datagrid from the Microsoft CodePlex project. I have a custom control that I want to databind to a field from the row of the datagrid. I can't for the life of me figure out how to ...
11
votes
2answers
4k views
bootstrap “tooltip” and “popover” add extra size in table
When I activate tooltips (hover over the cell) or popovers in this code, size of table is increasing. How can I avoid this?
Here emptyRow - function to generate tr with 100
<html>
...
10
votes
2answers
16k views
iPad Safari's mapping of mouse events to touch events in image-maps
My website makes extensive use of image-maps. The images are of pages from a medieval manuscript. The mouseOver event of the AREA tags has a tooltip attached to it, which displays a modern typographic ...
10
votes
3answers
1k views
How to center the Bootstrap Tooltip on an SVG?
I want to shift the tooltip a few pixels to the right, so the arrow is in the center of the cell where the cursor is (currently, it's positioned at (0,0), that is, top left). This is my code:
...
9
votes
7answers
6k views
jQuery: How to remove the tipsy tooltip?
I add the tipsy tooltip to divs with the .placeTaken class. The user can then drag boxes around, so I remove the class and add it to a new div instead. When this happens, I add a new tipsy tooltip to ...
9
votes
5answers
6k views
Add line break within tooltips
How to add line breaks within a HTML tooltip.
I tried using <br/> and \n within the tooltip like
<a href="#" title="Some long text <br/> Second line text \n Third line text">Hover ...
9
votes
1answer
12k views
D3: show data on mouseover of circle
I have a set of data that I am plotting in a scatter. When I mouseover one of the circles I would like it to popup with data (like x, y values, maybe more). Here is what I tried using:
...
9
votes
5answers
6k views
JQuery tooltip that supports new line
I'm looking for a lightweight jquery plugin for displaying tooltips when the user hovers over an element. I would like the plugin to get the content from the title attribute and also it's important ...
9
votes
2answers
4k views
How do you render tooltip on disabled HTML Button
I have a HTML button. I have tried to render a tooltip on it based on the "title" attribute of the button and it doesn't render. Mainly because it's disabled.
I then tried wrapping the button in a ...
8
votes
5answers
2k views
Custom Java tool tip with Swing components as content does not show up
I'm trying to show multiple images in a component's tooltip, found createToolTip() and implemented a custom that adds the needed components like this:
setComponent(component);
JPanel images = new ...
8
votes
8answers
18k views
jQuery + hide native tooltip + Resolved
Is there a way to hide the native tooltip action when a user hovers over a anchor tag with a title attribute? I don't want to remove it just don't display the nasty yellow box that is the default ...
8
votes
3answers
11k views
How to set the tool tip on jqGrid mouse over?
How can you set the "tool tip" that appears when you hover your mouse over a jqGrid row/cell?
Currently the tool tip appears to just be the cell contents.
8
votes
5answers
32k views
Displaying tooltip on mouse hover of a text
I want to display a tooltip when the mouse hovers over a link in my custom rich edit control. Consider the following text:
We all sleep at night .
In my case the word sleep is a link.
When the ...
8
votes
3answers
310 views
How to display the data from database through tooltip?
i want to display the data from ajax request to tooltip, it's open in modal window right now, but I want to open it into the tooltip, how can I do that, I tried a lot but didn't get success, I stucked ...
8
votes
1answer
479 views
How to set Tool Tip on the each Cell of JavaFX Table Mouse-Over?
I am new to JavaFX. I have created TableView and that looks like the image attached. I would like to show tool tip on each cell of the table when mouse over. I have already set two Cell Factory to ...
8
votes
1answer
494 views
check if BalloonTooltip was closed by user
how can I check if BalloonTip attached to NotifyIcon was closed by user clicking "Close" icon or had dissapeared after give timeout? It seems that BalloonTipClosed is fired in both cases, and ...
7
votes
3answers
4k views
Hide tooltip if binding is null
Currently i've got the following code to show a tooltip.
<Border BorderBrush="Black"
BorderThickness="{Binding Border}"
Height="23"
Background="{Binding Color}">
...
7
votes
4answers
923 views
Add a breakline in tooltip
¿How can I add a breakline to a text inside a tooltip in XAML?
I try with this:
<Label Name="label4" UseLayoutRounding="False" Focusable="False" AllowDrop="False" Foreground="Black" ...
7
votes
1answer
2k views
Is there a jQuery plugin for help balloons for first time users of a site? [closed]
Something like "Click here to get started" or whatnot. I am planning to add a "tutorial" mode for a site and was wondering if there was a jquery or rails plugin for it already.
I have tried googling ...
7
votes
4answers
8k views
How to display tooltips on jqplot pie chart
I have a jqplot pie chart with a legend and I would like to get the legend text to appear as a tooltip when the mouse hovers on the pies. I'm not sure how to do that. Does anyone have any experience ...
7
votes
2answers
2k views
How to display a temporary baloon tooltip during input validation?
I'm somewhat used to the GUI idiom where when I type something wrong in a text input field a balloon pops up from the field with info about what I got wrong / expected input. It remains visible until ...
7
votes
4answers
1k views
Adding tooltips to JTextPane
I want to add some tooltips to only a certain text inside a JTextPane. As an example, if there is a reference link text inside the JTextPane I want to add a tooltip to that text to show the link. Is ...
7
votes
2answers
2k views
nvd3 piechart.js - How to edit the tooltip?
I'm using nvd3's piechart.js component to generate a piechart on my site. The provided .js file includes several var's, as follows:
var margin = {top: 30, right: 20, bottom: 20, left: 20}
, width ...
7
votes
2answers
923 views
How to tweak my tooltips in wxpython?
I was trying to add a tooltip to show the full content of a truncated ObjectListView, until it turned out it had such a feature built-in:
I tried making my own tool tips using wx.TipWindow, ...
7
votes
1answer
3k views
jquery ui tooltip manual open /close
is there a way to manually open close the jquery ui tooltip? I just want it to react to a click event toggling on/off. You can unbind all mouse events and it will rebind them when calling ...
7
votes
3answers
7k views
jQuery qTip: How to attach a single tooltip div to multiple target divs?
The normal behavior for the jQuery qTip plugin is to create a new hidden div for every tooltip item assigned. Is there a way to tie a single hidden tooltip element to multiple targets, to avoid ...
7
votes
2answers
1k views
Override tooltip text for Titlebar buttons (Close, Maximize, Minimize, Help)
I have been trying without luck to change the text of the tooltip that appears for the buttons on the main title bar of a form.
In a nutshell, we have harnessed the 'Help' button for Windows Forms to ...
6
votes
3answers
4k views
Change the ToolTip InitialShowDelay Property Globally
I have an application that has upwards of a hundred different ToolTips set on a Ribbon control. All of the ToolTips pop up rather quickly (about half a second), and I would like to increase the pop up ...
6
votes
4answers
3k views
WPF Tooltip Visibility
How can I ensure that a button's Tooltip is only visible when the button is disabled?
What can I bind the tooltip's visibility to?
6
votes
4answers
3k views
Can I use complex HTML with Twitter Bootstrap's Tooltip?
If I check official documentation, I can see a property called HTML:
Name | Type | default | Description
...

