When I set firebug to break on all errors...
Submit the first form and I get (from prototype.js)
function getEventID(element) {
element is null3936 if (element._prototypeEventID) return
element._prototypeEventID[0]; (element is null error)
if I step past it and submit the second form I get the same error
again
Unfortunately I don't know why both errors are caused, can you help
please?
On Aug 5, 9:40 pm, DJ Mangus <[email protected]> wrote:
> 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
-~----------~----~----~----~------~----~------~--~---