> I'm going to work on this myself, but I wondered if anyone had suggestions
> for the best way to accomplish this.
I'd use the form plugin! :-) And maybe have the server return a
json object like:
{ "title": "the new title", "sortOrder": 1 }
The script could be something like this:
$('#newsForm').ajaxForm({
success: function(data) {
updatePage(data.title, data.sortOrder);
$('#newsForm')[0].reset();
}
};
function updatePage(title, sortOrder) {
// update the page here
}
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/