I'm working with JavaScript, HTML and PHP on this website where I have a GUI quite similar with an IDE. What I'm trying to say is that I have multiple tabs with diferrent buttons that generate multiple forms on a big .
When I'm done with filling all the fields from these multiple forms, it will lately all be exported into a JSON object. But that's not the problem for now.
The big issue here is all about keeping the information and allowing the user to later edit it before exporting everything to JSON.
Any sugestions?
Regards
Since its JSON Object. you can change like below.
var json = '{"result":true,"count":1}',
obj = JSON.parse(json);
alert(obj.count);
Refer for more information Parse JSON in JavaScript?
To Store the JSON into HTML5
Localstorage Concept will help you.
Check the below SO Answer
you need two way data binding, jquery is good or angular has great options for this kinda stuff.