Fix: jQuery 1.4.2 + http://www.malsup.com/jquery/corner/
In order for this plugin to work with jQuery 1.4.2, i had to change a line in the jQuery main source;
line 4691 was:
var defaultView = elem.ownerDocument.defaultView;
line 4691 should be:
var defaultView = (elem.ownerDocument ? elem.ownerDocument.defaultView : null);
Other than that, thanks for the hard work put into jQuery :)