[Proto-Scripty] Re: Ajax.Updater not working in IE, works fine in FF Chrome and Safari

2010-03-18 Thread T.J. Crowder
Hi, I tried some more stuff and it's getting stranger and stranger: Can you post a complete, self-contained, *minimalist* example[1], perhaps to Pastie[2]? I'm sure it's something simple, it's just not (I don't think) in the code and markup you've quoted so far. [1]

Re: [Proto-Scripty] Re: Ajax.Updater not working in IE, works fine in FF Chrome and Safari

2010-03-16 Thread David Behler
Hi, thanks for the quick answer. 1. I did not do that intentionally, it's some code I inherited from the former coder. I fixed that and now declare the variable inside the function, thanks for pointing it out. 2. As far as I can tell, there is no namespace conflict, the div has the id

[Proto-Scripty] Re: Ajax.Updater not working in IE, works fine in FF Chrome and Safari

2010-03-16 Thread T.J. Crowder
Hi, Any other ideas? From what you're saying, you've already verified (in your version using Ajax.Request) that: 1. `onSuccess` is getting triggered 2. The `response.responseText` has the correct markup 3. That `catObj.update(img ... /)` works (`catObj` having been set via `catObj =

Re: [Proto-Scripty] Re: Ajax.Updater not working in IE, works fine in FF Chrome and Safari

2010-03-16 Thread David Behler
Hi, I tried some more stuff and it's getting stranger and stranger: Using the Ajax.Request approach, it still does not work calling `$(cat).update(transport.responseText);` But calling this `$(cat).update('test');` actually works and replaces the loading image with the string 'test'. The