Are you getting any Javascript errors? Note: firefox and firebug is your friend. Don't forget to break on all errors.
On Wed, Aug 5, 2009 at 11:22 AM, Ash<[email protected]> wrote: > > Hi, I wasn't sure whether you meant in the 1st or second function, but > it doesn't make a difference in either. > > I think it is the Event.observe('password-form', 'submit', > callProcBasketPassword); which is not working properly, although I > don't know how to debug it > > > On Aug 5, 6:48 pm, DJ Mangus <[email protected]> wrote: >> Try adding e.preventDefault(); instead of Event.stop(e) and let me >> know if that works? >> >> On Tue, Aug 4, 2009 at 4:55 PM, Ash<[email protected]> wrote: >> > function callProcBasketEmail(e) { >> > var pars = Form.serialize('email-form'); >> > var myAjax = new Ajax.Updater('email-response', >> > 'procBasketEmail.php', { >> > method: 'post', >> > parameters: pars, >> > onSuccess: function(response) >> > { >> > Event.observe('password-form', 'submit', >> > callProcBasketPassword); >> > } >> > }); >> > Event.stop(e); >> > } > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/prototype-scriptaculous?hl=en -~----------~----~----~----~------~----~------~--~---
