[Proto-Scripty] Re: cant quite figure out how to process multiple forms to one processing script.

2012-02-10 Thread Victor
1. Element identifiers should be unique, in other words, if any form or field has identifier - it should not repeat in other forms. 2. When submitting form via script, it has option for the name of desired submit button, e.g. for form with two submit buttons: script $("formId2").serialize

Re: [Proto-Scripty] Re: no compatibility google add and my class (prototype)

2012-02-10 Thread Victor
1. You cannot use the name `Error` - there is already global object named Error. Try with another name. 2. You can shorten your code a bit: var User = Class.create({ // methods }); -- You received this message becaus

[Proto-Scripty] Re: Order of Event Handler

2012-02-10 Thread Victor
Hello! I just thought there would be a common pattern to this problem as i > almost can't believe that we're the first ones that need to 'pause' > event handlers without removing them. > Yes, this is a common problem without easy solution. As T.J. Crowder said, better try to find another solu