first I got JSON data via web server just like
$.getJSON(url,function(){
//my callback function;
});
And now I've got data as following:
{entries:[{title:'foo',id:'UUID',finished:null},{title:'bar',id:'UUID',finished:null},{title:'baz',id:'UUID',finished:null}]}
I have to find one specific JSON entry by it's UUID, and after that I need to modify one part for example, make a new json data:
{title:'foo',id:'UUID',finished:true}
And send back to server by using
$.post(url, data);
I'm totally lost myself with this situation... can anyone help?