Here is my code:
Event.observe(window, 'load', function() {
Event.observe('form_post', 'submit', function(){
new Ajax.Updater('Posts', 'getPosts.php', {
});
});
});
I just want to delay the call to Updater, any ideas??
Thanks