I have a strange one here. Here's the code I'm using:
$().SPServices({
operation: "UpdateListItems",
async: false,
batchCmd: "Update",
listName: list,
ID: prog,
valuepairs: [["Notes", $("#notes").html()]],
completefunc: function (xData, Status) {
alert("Notes:" + $("#notes").html());
}
});