Hello,
I saw your plugin working in chrome and in firefox, but not in IE. To investigate, I hit F12 to start the debugger in IE – then it worked. But anytime I viewed the site in a clean session it stopped working again. It puzzled me for hours, until I happened to notice the yellow javascript warning icon briefly appear and disappear again in the status bar. When I double-clicked it I found the cause of the problem:
console is not an object, unless the javascript debugger is loaded.
I searched through your source for “console.log”, commented all 9 hits and uploaded the modified version. After that, the plugin worked like a charm in IE as well. I now see it working fine in all Windows browsers, including Opera ??
I am convinced this is the same problem folks are having in firefox. For me it worked in that browser before my edit, because I am a web developer and have firebug installed and enabled by default. This will enable the javascript console.
To test if you can use console, you could use this code for logging:
if (typeof console != ‘undefined’) console.log( … );
That will make it browser-independent.
Hope this helps,
Berend