Re: submitting Ajax-form with javascript freezes browser

2007-04-23 Thread [EMAIL PROTECTED]
Hello - thanks for the post but i dont see how your method helps with my submitting the form via javascript. Doesnt this just create submit button that performs an ajax form postback? I need to be able to submit an ajax form via using javascript. Any ideas, or am I missing something in your

Re: submitting Ajax-form with javascript freezes browser

2007-04-20 Thread gerbenzomp
I vaguely remember your approach could cause some issues Try this approach: form onsubmit=return false; // your form fields here ?php if (!isset($complete)) $complete = ''; $options = array( 'url' = '/test/controls', 'update'=

submitting Ajax-form with javascript freezes browser

2007-04-19 Thread [EMAIL PROTECTED]
I have an ajax form that i want to submit using javascript. I created a input button that onclick submits my form. When i use this method (button test1) firefox freezes/crashes. If i click the normal submit button, everything works as expected. Why cant i submit the ajax form via javascript? Is