I have this Mootools 1.11 script that is updating div after the form is submited , form sends data to 'form.php' file and it returns a message like "form sent."
I would like to convert it to mootools 1.4.1
Mootools 1.11
$('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');
}
});
});
I hope someone help me. Thanks
new Event()constructor won't work. Events are now normalised automatically. juste.stop();update: does not work outside ofRequest.HTML. http://mootools.net/docs/core/Request/Request.HTML - alsothis.send(URL);- you are better off doing:currently jsfiddle is playing up but when it comes back: http://jsfiddle.net/mFRZP/
Element helpers are all fine and lovely for quick jobs but you really want control and clarity to know what you are doing.
No need to use Request.HTML when you can use Request.