> http://www.pastie.org/299081

This code is not correct.  This line is invalid:

options = { target: update_id, clearForm: true, success:
update_area(responseText)}

it should be:

options = { target: update_id, clearForm: true, success: update_area }

You need to set the success property to a function reference, not to
the results of invoking update_area.


> http://www.pastie.org/299106

This is also not valid.  'this' in the success handler is not an
element, it is the options object (assuming you have the latest
version of the form plugin; in prior versions it was the window
object).  From your code I can't really tell what you expected 'this'
to be.

Mike

Reply via email to