I want to open up browser dialog box when user click a button, and afaik this can be done by using a FORM tag.
The problem is the server only accepts json data (and using the form tag it has to have a name i.e.
formdata={"key":"value"}
The server does not like this format as it expects pure JSON
{"key":"value"}
Is there a way to send JSON data using FORM tag ?