By thrice on
I'm running Drupal-5.1 and accessing my website from a Win2000 machine with IE5.0.2920. This is out-of-the-box Windows 2000, build 2195. I guess hardly anyone uses it anymore, SP4 being the standard Win2K patchlevel for several years, but it's a machine in my test farm.
I'm seeing a Javascript error caused by the textarea.js file. It says "Error, object doesn't support this property or method" at line 3 char 1. OK that and it says "Error, push' is not an object" at line 34 char 3.
I've disabled that code (using "'#resizable' => False" in the form code) so it's not a big deal for me, but I'd thought I'd report it in case anyone is interested. :)
Comments
Push method unsupported on IE5.0
Just passing by, trying to solve a similar problem elsewhere: It sounds likely caused by IE 5.0 not supporting the push method on an array. Instead of array.push(data), use array[array.length]=data . A simple test case can be created using Wine with IEs4Linux. (Source: http://www.digitalamit.com/kb/kb/11.html )