tags:

views:

16

answers:

1

i want to show tooltip for individual li element for that i am using title attributes but it is working only in IE not n firefox and chrome what attribute should i use for these two browser

<ul class="steps">
                    <li class="" id="step1" runat="server" title="Element to Add / edit the Test">Step 1</li>
                    <li class="step2" id="step2" runat="server" title="Add Course Constituents">Step 2</li>
                </ul>
A: 

The attribute you are using is correct. This element should be working for you and is part of HTML 4 and available on most elements. W3C Reference. I did a simple test in both Firefox and Chrome and the title attribute on li is rendering as a tool tip for me.

tribus
ok tribus let me see it one more time thank you
Mac
you might try a jQuery plugin like qTip if you want more functionality.
dave thieben