tooltips

Getting custom tooltips with JQuery

Hello, I'm looking for a JQuery code sample or library for displaying tooltips when the cursor hovers over an element. Specifically, what I want to do is display my own <div> element on hover, not an automatically-constructed or loaded-from-the-host-element tooltip. I've looked at a couple JQuery tooltip plugins and they all seem to be ...

Is it possible to format an HTML tooltip?

Apologies if this is a n00b question but I can't find a straight answer anywhere. Is it possible for 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 there a way to make the tooltip font scale with the bro...

CSS Styling the prompt tooltips in dojo

Does anyone know the name of the CSS classes responsible for styling the dojo promptMessages (or invalidMessages) tooltip associated with ValidationTextBoxes. Normally Firebug does a great job of revealing all the inner workings of CSS, but in this case the tooltip prompt disappears when I try to inspect it! I am intending to play with...

Position div depending on distance browser edge (javascript)

I am trying to create a small tooltip script that mostly relies on css. The bit of JavaScript I can't figure out is how to position the div based on its distance to the browsers edge. When the div appears I would like it to check how close it is to the top, bottom, left and right. For example if there is not enough space to display the ...

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;" /> Here is the tooltip content. </span> Here is the link to somewhere. </a> The behavior that I am hoping for is to hover over "Here is the link to som...

Silverlight: "The name already exists in the tree"

Hi, this is a problem that regularly arises when I write Silverlight XAML. In this case, I've made a usercontrol VerticalTabStop (code attached) that has a ToolTip attached. I instanciate a couple of my usercontrols, and then I get the debugging window and the following error: Line:52 Error: Unhandled Error in Silverlight 2 Application ...

Creating a chart with tool tips in a Web Garden

I need to show a Line Chart on an ASP.NET page where each data point has a tooltip that shows its exact X and Y values. A chart for a particular dataset will probably only ever be requested once, so caching is disabled and the chart will be regenerated if it ever needs to be shown again. Restrictions: Needs to work in a web garden en...

How to parse a remote website and create a link on every single word for a dictionary tooltip?

I want to parse a random website, modify the content so that every word is a link (for a dictionary tooltip) and then display the website in an iframe. I'm not looking for a complete solution, but for a hint or a possible strategy. The linking is my problem, parsing the website and displaying it in an iframe is quite simple. So basicall...

Tooltip for each items in a combo box

Hi I just want to add a tooltip for each item in a combo box. i am using c#.net windows application. There is no option like combobox.items[1].tooltip(); Is there any way to add tooltip it ? ...

tooltip on a dropdown list

Is there anyway of showing a tooltip on the dropdown list? such as when the list is dropped and a person hovers over each option a tooltip or something with details appears. this is for a drop down list with a cascading drop down. this is for asp.net ...

How to increase the time tooltips remain visible in Visual Studio

By default, Visual Studio tooltips remain visible for 10 seconds and then they disappear. I find this time too short to read some of the longer tooltips. Is there a way to increase the time they remain visible? ...

How to know quantity of users with turned off images in browser?

I'm working on the quite popular website, which looks good if user has turned on "Load images" option in his browser's settings. When you try to open the website with "turned off images" option, it becomes not usable, many components won't work, because user won't see "important" buttons(we don't use standard OS buttons). So, we can't ...

Why aren't Shell_NotifyIcon balloon tips working?

According to everything I've seen, the following C++ program should be displaying a balloon tool tip from the tray icon when I left-click in the application window, yet it's not working. Can anyone tell me what I'm missing? This is on XP with version 6.0 of Shell32.dll (verified with DllGetVersion). Thanks! #include "stdafx.h" #inc...

Control a Winforms tooltip's location

Is there any way to control a tooltip's location on a Winform? I can handle the Popup event, but in the event handler I can only change the size, not the location. I could use the OnMouseEnter/Leave events of the control to manually show a tooltip, but then I lose the benefits of the AutomaticDelay property of a normal tooltip. ...

Tooltips for CheckedListBox items?

Is there a straighforward way to set additional text to appear in a tooltip when a user's mouse is held over an item in a CheckedListBox? What I would expect to be able to do in code is: uiChkLstTables.DisplayOnHoverMember = "DisplayOnHoverProperty"; //Property contains extended details Can anyone point me in the right direction to d...

NullReferenceException with ToolTip.CreateHandle

We sporadically get errors when we try to update a tool tip, like this ToolTip.SetToolTip(myLabel, customDataStructure) The error we get is a NullReferenceException: Object reference not set to an instance of an object Does anyone know the cause of this? Is a simple Try/Catch that eats the NullReferenceException a feasible option? ...

Good CSS for flashes (aka info messages in Rails, growls in OSX)

I'm having difficulty getting CSS to work like I want it to for flashes (those little messages that show when you log in or do something or whatnot to confirm your action, eg in Rails). I want it to: live within any arbitrary div look like a centered box with text in it be only as big as needed to fit the text (if less than specified ...

get content to tooltip from url in javascript

I'm using cluetip for tooltips in my web site, and I want to set the tooltip text based on the link url. For example: I have a link on my page to "http:abc.com/display?content=sweeties" and I want the tooltip to read "sweeties" Someone show me how, please? ...

How to modify the tool rect of a CToolTipCtrl?

This question is related to this one. In a CDockablePane derived class I have a CTreeCtrl member for which I add a ToolTip in OnCreate(): int CMyPane::OnCreate(LPCREATESTRUCT lpCreateStruct) { if (CDockablePane::OnCreate(lpCreateStruct) == -1) return -1; const DWORD dwStyle = WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS | W...

Multi-line tooltips in Java?

I'm trying to display tooltips in Java which may or may not be paragraph-length. How can I word-wrap long tooltips? ...