Could anyone recommend a JavaScript library or sample code for inline editing of multiple fields at the same time? I'm looking for something similar to Flickr, where when you click on either the name or description of a photo they both turn into texboxes and when the user clicks "save" both of them are saved.
I'm using jQuery, so a jQuery plugin would be nice, but not essential. I've already looked at https://stackoverflow.com/questions/708801/whats-the-best-edit-in-place-plugin-for-jquery, but haven't found any that support multiple fields.
You can opt to not use a plugin. You can have something like: HTML:
Then you can write a similar jQuery in $(document).ready():
You can of course style them as much as you like.
(P.S. Code is tested and WORKING!)