Posts

Es werden Posts vom Juni, 2009 angezeigt.

A footnote on Prototype's Event.observe and mouseover / mouseout

Bild
Recently I worked on a website that had a CSS-based nested navigation and a form. The good old IE6 select overlay bug made it necessary to create an event handler that overlays the select box with an inline-frame (this is a common fix I have read about). To demonstrate the effect, I have set the form to invisible in this example. Mouseout looks like this: Mouseover then hides the form: First I used Prototype's Event.observe(): Event.observe(window, 'load', function() { if(navigator.appVersion.indexOf('MSIE 6.0') != -1){ Event.observe($('mainnavlist'), 'mouseover', function() { $('form1').style.visibility = 'hidden'; }); Event.observe($('mainnavlist'), 'mouseout', function() { $('form1').style.visibility = 'visible'; }); } }; Unsatisfyingly, this caused a lot of visual flickering.Eventually I found out that Event.observe interprets the event a bit different th

A wonderful IE6 PNG-Fix for everyone

No words, just a single link: http://labs.unitinteractive.com/unitpngfix.php