I know this might sound silly and the easier alternative is to convert my pages to PHP. But is there a way to do this in HTML with Javascript or jQuery?
i want to sending JSON string from one HTML page to another.
in first.html there is a set of images that gets converted into a JSON string that looks like this:
{"images":[ {"src":"images/en1.png"},
{"src":"images/en4.png"},
{"src":"images/en2.png"},
{"src":"images/fr4.png"},
{"src":"images/b40.png"},
{"src":"images/ca7.png"}
]}
i want to send this to second.html and in there a button called edit will take all this back to first.html
Is there a way to do this or is it impossible?