[jQuery] How to update multiple div on ajax success

[jQuery] How to update multiple div on ajax success


Hi, I am using this plugin to submit my form.
http://www.malsup.com/jquery/form/#code-samples
Everything works great except that I would like to update more than
one div with separate data after a successful form submit.
Example:
<div id="test1">Something here</div>
<div id="test2">Something else here</div>
target: '#test1 #test2', // target element(s) to be updated
with server response
How do I accomplish this? If possible how would i format the return
data to split in two and go to each div.
Thanks for any help :)