[Proto-Scripty] IE6 Error

2008-10-21 Thread jschank
Hello, I'm using protoype.js in a rails application. The application works fine on Safari, FireFox (both windows and mac), however, when I load my app in IE6, I get an Error: Object doesn't support this property or method pop up. When I choose to debug that in the script debugger, I see that

[Proto-Scripty] Re: IE6 Error

2008-10-21 Thread jschank
Hi T.J. Thanks for the reply. I've read the docs at the links you mention, but I'm still stuck. The problem (with me anyway) is that I'm a JavaScript noob, and the JavaScript calls that exist in my app get there via Rails. So I'm having a problem even finding the offending function. It seems to

[Proto-Scripty] Re: IE6 Error

2008-10-21 Thread jschank
T.J. I thought I'd add the clip of the only JavaScript code that I'm responsible for: (in case the problem is therein) $(document).ready(function() { // Build tabs... $('#tabs ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } }); // Animate the hiding of any

[Proto-Scripty] Re: IE6 Error

2008-10-21 Thread jschank
T.J. I did the remove of my JavaScript, and I still get the error. So it must be a problem with Rails or one of the plugins. I'll poke around on their boards and fora to see if they have mention of this. Thanks, John --~--~-~--~~~---~--~~ You received this

[Proto-Scripty] Re: IE6 Error

2008-10-21 Thread jschank
Ok, I've solved this... Apparently, the problem stems from trying to use both prototype AND jQuery on the same page. I thought I needed prototype for active_scaffold (AS does require prototype) but I was able to remove both active_scaffold and prototype from my app. Now I no longer get the