Hi all, 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","firstname":"John","lastname":"Doe"}]
I would like to just store the id in a hidden field so I can reference it later to do something with it.
ex: I have something like this... ... and would like jquery to return the value later to me like so ... var scheduletimeid = $('#HiddenForId').val(); ...