Shadow not working
Shadow not working
What is the status of the ui.shadow plugin? I've tried using it and
ran into 3 problems right away.
1. There is no way to remove a shadow. Documentation mentions
shadowDestroy() method but it's nowhere to be found in the code. Is it
simply not implemented?
2. Move is not working consistently in FF (shadow is sometimes
misaligned a bit to the left or right, seems like it misses some mouse
move events and ends up trailing the real DIV that's moved) and not
working at all in IE
3. Shadow is giving a JS error in my IE 6. The actual error is
reported in jquery.js file on line 698 saying that "style is null or
not an object:
curCSS: function(elem, prop, force) {
....
if (!force && elem.style[prop])
ret = elem.style[prop];
I can help fixing this if noone is looking into it yet.