Is it possible to include JavaScript functions in JSON like the example below? My JSON library is struggling to process this structure because of the quotations. How can I address this issue? I specifically need to store JavaScript functions within my JSON data, such as code for a button.
controls: {
"button": "just "html" code for a button"
}
I am aware that there are quotation marks in the values, and simply removing them will not provide a solution to my problem.