How can I include double quotes in an HTML page's input's value?
Eg: <input name="locations[]" value="["SFO","SJO","LA"]">
I need double quotes there, because this is a json array. But it wont work. Changing it to '
causes errors in the json.
I'm using <!DOCTYPE html>
. Can this be done somehow?