Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Button Tooltip

    I'm trying to get a button tooltip to work but the code I'm dealing with was
    created by someone else and I got it to work in the Development instance of my
    application but when I promoted to Quality, it didn't work. I just want to
    give the user some information that pops up when the user mouses over a button
    on a Coldfusion page. Anyone know how to do that? Thanks

    flujan Guest

  2. Similar Questions and Discussions

    1. tooltip
      Is it possible to have a tooltip on a word in a textbox or textarea? Thanks
    2. Datagrid ToolTip
      Hi, I am displaying data in the datgrid. I don't have too much space on my page and the data in the columns have lots of info. Is it possible...
    3. Tooltip text
      Hallo am new to this forum. I have images on my page and i want to display tooltip text when you mouse over. Now i want to format the text such...
    4. Tooltip - binding...
      Hi Is it possible to also bind to the Tooltip property of the control, when binding the data to the control?? I have a Dataset which contains...
    5. Tooltip Over 3D Cast
      Does anyone have a script for a Tooltip over a 3D cast that does not crash whilst waiting for a 3D cast to complete its blit to the screen? Timsk
  3. #2

    Default Button Tooltip

    I'm trying to get a button tooltip to work but the code I'm dealing with was
    created by someone else and I got it to work in the Development instance of my
    application but when I promoted to Quality, it didn't work. I just want to
    give the user some information that pops up when the user mouses over a button
    on a Coldfusion page. Anyone know how to do that? Thanks

    flujan Guest

  4. #3

    Default Re: Button Tooltip


    It does not work in all browsers, but have you tried using the "title" attribute?

    <input type="button" title="My tooltip here">

    Bryan

    blewis Guest

  5. #4

    Default Re: Button Tooltip

    Flash forms has a nice tooltip attribute feature in most of its elements.
    CUA web dev Guest

  6. #5

    Default Re: Button Tooltip

    Hello. If I understand what you mean by 'ToolTip', then try the code below. It
    is making use of the title attribute for the tags. If your button is an image
    and you have an href around it, then you could also use the alt attribute of
    the img tag. <button title='Help Text'>Button</button> <input type='submit'
    title='Help Text' value='Submit' /> <input type='button' value='Button'
    title='Help Text' /> <a href='yourLink.cfm' ><img src='pathToImg.jpg'
    alt='Descriptive Text' /></a>

    MintyDynk Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139