I'm using prototype 1.5.0_rc1 (as far as I know, the one that comes
with the latest scriptaculous release)
I had "Ajax" problems with IE7, namely that it didn't work at all. I
found patch 3688 at
http://dev.rubyonrails.org/ticket/3688but that didn't solve my problem. What did solve my problem was to
simply reverse the checking of ajax support on lines 627 - 629 into this
function() {return new ActiveXObject('Msxml2.XMLHTTP')},
function() {return new ActiveXObject('Microsoft.XMLHTTP')},
function() {return new XMLHttpRequest()}
in effect, i first check for microsoft proprietaries, then for the
"standard". it's said that ie7 should handle the "standard" but at
least in my case, this seemed not to be so.
any comments? (I did try to google and look inte the list archives
for a while back)
Andreas