Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
What platform and language? – itsmatt Mar 25 '09 at 17:37
It rather depends what platform you're talking about. And, unless you're clients are followers Maharishi Mahesh Yogi, your users won't be hovering. – Pete Kirkham Mar 25 '09 at 17:38
Why you say so? Curious to know about this Maharishi Mahesh Yogi followers. – BaLs May 28 '09 at 6:25

2 Answers

Marco, not sure what browser your demographic is, but the standard code below works for FF.

<select>
<option value="1" title="this is text about the value">Option 1</option>
</select>
share|improve this answer

You can do something like this in code behind (c#):

        foreach (Widget w in Widgets)
        {
            ListItem item = new ListItem(w.Name, w.WidgetID.ToString());
            item.Attributes.Add("title", w.TooltipText);

            ddlWidgets.Items.Add(item);
        }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.