[jQuery] Error IE6

2007-01-16 Thread Harlley Roberto
Hi guys, Why jquery does not work correctly in IE6 ? Has Anybody else ever had this same issue ? Error: 'style' is null or it does not a object line 480 ]if (!force elem.style[prop]) { -- []'s Harlley R. Oliveira www.syssolution.com.br --- ~ U

Re: [jQuery] Error IE6

2007-01-16 Thread Harlley Roberto
This part of my code that is not working: var arrElementos = $(p).get(); var tempo = 1000; for(var i in arrElementos) { if (i == 0) { setTimeout($(arrElementos[i]).DropInRight(1000), tempo); } else {

Re: [jQuery] Error IE6

2007-01-16 Thread Mike Alsup
var arrElementos = $(p).get(); var tempo = 1000; for(var i in arrElementos) { if (i == 0) { setTimeout($(arrElementos[i]).DropInRight(1000), tempo); } else { setTimeout($(arrElementos[i]).DropInLeft(1000), tempo); } } This