> I just tried the latest update. Pretty good, but why the need for the > timer and the one second delay before removing the highlight? Can't > the switch back to unhighlighted just be triggered by onMouseOut?
That's what I did in the beginning, but it was unreliable. Too often browsers would "miss" the event if you moved the mouse too fast etc. > <div class="selectorMarker" onmouseover="Utils.highlight(this);" > onmouseout="Utils.unHighlight(this);" It's not that simple: as these are nested divs the mouse is leaving/entering all the time. I had to add some checks whether something was child/parent or not etc. which made it overly complicated. Michael _______________________________________________ beta mailing list [email protected] http://lists.slimdevices.com/lists/listinfo/beta
