2.1 didn't seem to work on IE7, not sure if it's supported but I got it to work.
It crashed at the corners function because IE7 doesn't like the selector with .joyride-tip-guid[data-index=n] and so when el.offset() doesn't have a top property because it's null.
I got it work with IE7 by changing the set_next_tip function.
set_next_tip: function () {
settings.$next_tip = $($('.joyride-tip-guide')[settings.$li.index()]);
},
2.1 didn't seem to work on IE7, not sure if it's supported but I got it to work.
It crashed at the corners function because IE7 doesn't like the selector with .joyride-tip-guid[data-index=n] and so when el.offset() doesn't have a top property because it's null.
I got it work with IE7 by changing the set_next_tip function.