Thank you for this awesome plugin!
I realized that it did not work below IE9. The reason therefore is, that you used $item.get(0).style=""; in line 297 and it seems that get() is "not implemented" in IE8. by changing this to $item[0].style=""; I was able to fix it :)
Hi,
Thank you for this awesome plugin! I realized that it did not work below IE9. The reason therefore is, that you used $item.get(0).style=""; in line 297 and it seems that get() is "not implemented" in IE8. by changing this to $item[0].style=""; I was able to fix it :)