Questions tagged [jquery-tooltip]

Tooltip implementation using the jQuery library.

Tooltip implementation using the jQuery library without any external plugins or widgets.

220 questions
61
votes
1 answer

What does !function ($) { $(function(){ }) }(window.jQuery) do?

I'm using twitter bootstrap to create a site and was trying to initialize tooltips. Apart from adding something like: $("[rel=tooltip]").tooltip() in application.js , unless I retain, the following piece of code used in bootstrap docs, my…
Grishma U
  • 767
  • 1
  • 6
  • 13
41
votes
6 answers

Aligning text in bootstrap tooltip

Bootstrap tooltip aligns text to the middle by default. I'd like to align to the left. Is there any nice way of doing this within HTML, instead of modifying CSS file? Here is my sample code:

agerrr
  • 1,133
  • 5
  • 13
  • 23
22
votes
2 answers

Best way to provide a "tooltip tour"

What is the best way to provide a quick tour of a webapp using contextual tooltips? Use case: user navigates to the webapp some form of popup asking if the user wants a guided tour of the interface user can click next on each tooltip to be shown…
Garen Checkley
  • 5,252
  • 5
  • 19
  • 23
14
votes
3 answers

Text selection and bubble overlay as Chrome extension

I am looking for a way to select text on a website in Chrome and have a overlay/tooltip pop with content depending on the text selection. Has anyone done this before or knows from the top of their heads how to make the toolip pop-up? Much…
12
votes
1 answer

Where's the Tipsy plugin for jQuery?

I'm unable to find the download link for the Tipsy plugin http://onehackoranother.com/projects/jquery/tipsy/ The jQuery project page for the plugin (http://plugins.jquery.com/project/tipsy) does not have a download link. Am I not looking in the…
Prabhu
  • 11,837
  • 31
  • 115
  • 194
7
votes
3 answers

Setting tooltip text to a div element dynamically

I am trying to set a tooltip text to a container (div) dynamically and using jQuery for each div element (elem.Alias-Status) that I am just adding to the ordered list: function addNewElement(elem) { var li = $("
  • "); …
    user304602
    • 921
    • 4
    • 20
    • 36
    7
    votes
    2 answers

    my tooltip is cut off by the div container

    I have this code to make appear a tooltip when a message box is "hovered". All message boxes are inside a div called chatbox. $('.box').hover(function(){ var htmltooltip = '
    '; htmltooltip += '

    Label…

    Falcoa
    • 2,233
    • 1
    • 13
    • 27
    7
    votes
    5 answers

    how to close jQuery tooltip

    I've been trying to make very simple javascript tooltip with jQuery but I've hit a brick wall. The idea is to have little inline element (span) inside a div. The span element will contain a tooltip div with a little html (image and link). Tooltip…
    Kristian
    • 904
    • 1
    • 9
    • 16
    6
    votes
    3 answers

    trying to use jquery tooltip plugin, object has no method "tooltip"

    I'm using this tooltip: http://flowplayer.org/tools/demos/tooltip/index.html I have the following lines in my html file:
    Ringo Blancke
    • 2,314
    • 6
    • 26
    • 52
    6
    votes
    4 answers

    Testing if JQuery tooltip is initialized

    I am using a JQuery UI Tooltip along with AJAX to validate a form. I am using one tooltip for each fields and I am changing the content of this tooltip depending on the error my AJAX return. For my code to be complete I need to test if the tooltip…
    Sebastien
    • 1,230
    • 2
    • 13
    • 33
    5
    votes
    2 answers

    How to add a text box popup (Jquery tooltip or similar) to a Fabric JS image within a canvas?

    I'm working on a Fabric JS project to map a floor with its rooms' locations. At each room location I added an icon. I want to have a text box pop up (such as jquery tooltip) each time the mouse hover above the icon. The text box should show room…
    Zack S
    • 1,192
    • 1
    • 20
    • 37
    3
    votes
    1 answer

    Check if a jquery tools tooltip is already assigned to a component

    I have a component to which I assign a tooltip upon first mouseenter (sort of a lazy assignment of tooltip to component) I use the lazy approach since there are many tooltip'able components and I don't want to pre-assign the tooltips to all of…
    Ben
    • 9,162
    • 21
    • 89
    • 151
    3
    votes
    2 answers

    How to make a tooltip for scrollbar?

    I'm doing a webpage with listed items and those items are in Alphabetic order. Today i saw Tooltip in Google's contact web when scrolling my Mobile contact list from that web. Tooltip was fixed with scroll-bar and moves along with scroll-bar. I was…
    shmshd
    • 363
    • 1
    • 10
    3
    votes
    2 answers

    jQuery Tooltip widget well-suited to use with an IMAGE-MAP? suggestions/recommendations please

    I would like to display different tooltip content for each of the areas defined in an image-map. Are there any jQuery plug-ins that have an API well-suited to use with image-maps? I would like it also be be flexible with regard to where the tooltip…
    Tim
    • 5,331
    • 3
    • 30
    • 40
    3
    votes
    1 answer

    jQuery tooltip showing behind dropdown

    How can I get tooltip to disable & hide when element gets focus and not show up again for mouseover until blur event takes place. Expected: Tooltip has a delay on mouseover. In my jsFiddle, mouseover left dropdown, wait for tooltip to appear, click…
    webaholik
    • 1,218
    • 15
    • 27
    1
    2 3
    14 15