hi,
I'm having problem to make this contact form (http://www.roscripts.com/
AJAX_contact_form-144.html) work for my site (pennfolio[dot]com). I
cant make the log, write the message to the empty div(#log_res). I
think it has something to do with event(e).
I currently remove this part
window.addEvent('domready', function(){
$('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');
}
});
});
});
to make my contact form work temporarily.
Thanks for the help!