I am trying to update a Page's content using SPServices.
When I run my code, it does update the correct page, but instead of updating the content, it just removes the content.
var newContent = "<p>This is a test</p>";
$().SPServices({
operation: "UpdateListItems",
listName: "Pages",
ID: itemID,
async: false,
valuepairs: [["PublishingPageContent", newContent]]
})