function saveProjectAjax(docsId, content) {
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function () {
localStorage.setItem('upadateContent',JSON.stringify(content));
if (this.readyState == 4 && this.status == 200) {
}
};
xmlhttp.open("GET", "addProjectDetailBase.php?cu=true&pid=" + docsId+"&content="+encodeURIComponent(content), true);
xmlhttp.send();
}
I want send my content (json) data from function which is large as of 250 kb through content parameter of my function