ToolTip for Drop Down List Items

liunx

Guest
Hi,

Does anyone know how can I create a web drop down list with different tool tip for each item ?

Thanks,
Alonperhaps javascript is the only way to go with this.var ddlLength = document.frmCADiary.ddlEventType.options.length;
for (var ddlCount = 0 ; ddlCount < ddlLength ; ddlCount++)
{
document.frmCADiary.ddlEventType.options[ddlCount].setAttribute
("title",document.frmCADiary.ddlEventType.options[ddlCount].text)
}

The ddlEventType is the name of the Drop down list..


Thanks
ShenoyHi it is not working in IE 6,you have any idea about that .....use IE 6. Insteed
 
Back
Top