I recently made a Mootols script for my website. Using Fx.Morph, I succesfully created the effects I was aiming for. However, the script fails in Internet Explorer 7 and 8 (works fine in 9, didn't not bother to check IE6). I am using mootools 1.2.5.
Digging up the problem, I could figure out the following
- All my problems are coming from Fx.Morph, who calls setStyle with invalid values
- Somehow, while morphing height of an element from 0px to 160px, setStyle is called with a negative value (such as -3px) <---- this is where IE throws an error
For now, I "patched" the error by doing the following in the setStyle function of the Mootools core:
if((Browser.Engine.trident && value[0] == '-' && (property == 'height' || property == 'width')) || value[0] == 'N')
value='0px';
Anyone has some more info on this issue or experienced a similar problem?
element.setStyle("scroll", "none");which works on other browsers. having a negative height in IE sounds like a bad thing to do. FYI, this has also been a problem in jquery - bugs.jquery.com/ticket/5588 - build the test case and i will see what i can do – Dimitar Christoff Dec 8 '10 at 16:47