How about just $('abc').blur()?
> 2. In IE 6 the mouseout event won't work and I don't understand why.
> the mouseover works perfectly fine. here is the function where I'm
> using it, maybe you can see another mistake:
You'll need to provide an online minimalistic reproduction of your issue.
Anyway instead of using events for what you have here, you should just
use CSS and the :hover class for your id="minimize" link, with a
background image (best: use CSS Tiling for optimal speed). Much cleaner…
--
Christophe Porteneuve aka TDD
t...@tddsworld.com
Er, hang on a sec. You're trying to blur an item, right? The blur
event is native, cannot be reliably emulated across browsers, but if
you're effectively blurring an element, its blur event will occur.
Since blur events _don't bubble anyway_ [1], there's no point in just
firing the event for the sake of it. But calling blur() on a focusable
element will, for sure, blur it if it had the focus.
[1]
http://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-eventgroupings-htmlevents