Unfortunately it's not as simple as just using array.join everywhere. For the type of string building we do, string+= is actually faster than array joining in all browsers except IE, but in IE it makes a huge difference.
Even in IE it is faster to use string+ for building small strings than to use an array.
So the fix I have checked in uses array.join in IE only, and only for areas in the code where large strings are handled. This has put IE performance on par with FF performance (a little bit slower though).
Unfortunately it's not as simple as just using array.join everywhere. For the type of string building we do, string+= is actually faster than array joining in all browsers except IE, but in IE it makes a huge difference.
Even in IE it is faster to use string+ for building small strings than to use an array.
So the fix I have checked in uses array.join in IE only, and only for areas in the code where large strings are handled. This has put IE performance on par with FF performance (a little bit slower though).