I have this Mootools 1.1 script that is updating div after the form is submited ,

tried to convert it to mootools 1.2.4 but the log does not work and I am not getting any errors either

Mootools 1.1

        $('myform').addEvent('submit', function(e) {

            new Event(e).stop();
            var log = $('log_res').empty().addClass('ajax-loading');
            this.send({
                update: log,
                onComplete: function() {
                    log.removeClass('ajax-loading');

                }
            });
        }); 

mootols 1.2

        $('myform').addEvent('submit', function(e) {

            new Event(e).stop();
            var log = $('log_res').empty().addClass('ajax-loading');
            this.set('send',{
                update: log,
                onComplete: function() {
                    log.removeClass('ajax-loading');

                }
            }).send();
        }); 
link|improve this question

73% accept rate
feedback

1 Answer

up vote 1 down vote accepted

try this:

     $('myform').addEvent('submit', function(e) {

        e.stop();
        var log = $('log_res').empty().addClass('ajax-loading');
        this.set('send',{
            url: this.get("action"),
            data: this,
            update: log,
            onComplete: function() {
                log.removeClass('ajax-loading');

            }
        }).send();
    }); 
link|improve this answer
thank you !, this worked for Moo 1.3 – Benn Mar 11 '11 at 18:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.