It uses mootools.js and the following javascript:
Code: Select all
<script type="text/javascript">
window.addEvent('domready', function(){
$('myForm').addEvent('submit', function(e) {
new Event(e).stop();
var log = $('log_res').empty().addClass('sending');
this.send({
update: log,
onComplete: function() {
log.removeClass('sending');
}
});
});
});
</script>Is this a conflict? Is there something I can do to handle this?