I was wondering if it\'s possible to store the return json in a hidden input field. For example this is what my json return:
[{\"id\":\"15aea3fa\",\"firstnam
just set the hidden field with javascript :
document.getElementById('elementId').value = 'whatever';
or do I miss something?