To answer my own question...

It turns out that onComplete wasn't the issue. Rather, a form was calling a function that created a new Ajax.Updater and passed itself as that function's parameter. IE didn't work with the form trying to update itself, so I called a wrapping <div> and all works now:

function handleInlineForm(aform){
    var form = $(aform);
    var parent = $(form).parentNode;
    return new Ajax.Updater(parent.id, form.action, {
        method:'post',
        postBody: Form.serialize(form),
........

Jamie



On Apr 18, 2006, at 11:35 AM, Jamie Orchard-Hays wrote:

Has anyone found a way to get onComplete to fire in IE? I've built a bunch of functionality around Updater and this is a show-stopper for me. I'm on the latest Scriptaculous.

Thanks much,

Jamie
_______________________________________________
Rails-spinoffs mailing list
[email protected]
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs

_______________________________________________
Rails-spinoffs mailing list
[email protected]
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs

Reply via email to