Hi guys,
I have an ImageButton in ASP.Net on my site, filled with the property ToolTop:
<asp:ImageButton CausesValidation="false" Enabled="false" ID="imgHelp" ImageUrl="Images/Icons/help.png" Width="15px" Height="15px"
runat="server" ToolTip="Die Referenz der Anfrage, z.B.: Bieter- oder Auktionsnummer" />
But in FireFox the ToolTip isn't shown up.
Someone an Idea for which reasen OR know a good free to use ToolTip-UC?
This is the generated code:
<input type="image" name="ctl00$ContentPlaceHolder1$imgHelp" id="ctl00_ContentPlaceHolder1_imgHelp" disabled="disabled" title="Die Referenz der Anfrage, z.B.: Bieter- oder Auktionsnummer" src="Images/Icons/help.png" style="height:15px;width:15px;border-width:0px;" />
Ok I see my problem, when the ImageButton is Enabled, the tooltip works, but the user can click on it (what I don't want). Any ideas?