var edit = $('#edit .fr').html();
I am sending this value to spring controller using AJAX .
ajaxRequest('POST',
JSON.stringify(data),
'application/json; charset=utf-8',
makeURL('submit') +
'?edit' +
edit,
okFunc,
errorFunc);
Now in my spring controller, I get the value of edit as null.
@RequestParam(value="edit", required=false)String edit
Any help would be appreciated.