Hello,
I am using this code to add list item in sharepoint list and its working fine .But now I want to copy the same Item in other list in same site collection.How it can be possible?
function AddListItem(Fieldvalue)
{
$().SPServices({
operation: "UpdateListItems",
async: false,
batchCmd: "New",
listName: " list name ",
valuepairs: [["Fieldname", Fieldvalue]],
completefunc: function (xData, Status) {
}
});
}Thanks,