Does jsFiddle use json to save CSS / HTML, Javascript / JQuery? Probably this json
is saved in a bank. The 4fh0xdpc
series would be the ID in the bank.
http://jsfiddle.net/
4fh0xdpc
/
Each update generates a number after that id.
http://jsfiddle.net/4fh0xdpc/
1
/
Or does it simply send the .json file to the server and save (create a folder)? for example:
- folder
4fh0xdpc
for the first project created.
if there is update:
- folder
4fh0xdpc
with subdirectory1
(always varying)
I am developing a system that the user can build a form dynamically (include questions, validation of each question, automatically generate form bank etc). Part of the system is developed (I'm already generating .json with all the questions, number, etc). However, I would like to do something more: save the project for later being moved by the same user or another.
Is there any tip to implement this part? I wanted to follow the jsfiddle
templates, if there are any good tips, I'm open for tips.