how to capture the mouseover element?
Posted
by murali
on Stack Overflow
See other posts from Stack Overflow
or by murali
Published on 2010-03-26T11:39:34Z
Indexed on
2010/03/26
12:03 UTC
Read the original article
Hit count: 550
autocomplete
|JavaScript
hi,
i am developing an autocomplete feature.but i am facing one problem there...
when i click on the suggestion box one of the results will not enter into the suggest html box...
function handleOnMouseOver(oTr)
{
deselectAll();
oTr.className ="highlightrow";
position = oTr.id.substring(2, oTr.id.length);
updateKeywordValue(position);
}
can you plz tell the solution
thanks
© Stack Overflow or respective owner