I have a restful web service which can deal with DTOs in json format to perform a CRUD operation.
Let us also say I use jquery in an unobtrusive way to serialise my form at the frontend using:
JSON.stringify
What can I do to ensure that everything works even if JavaScript is switched off?
I don’t see how you can run jquery JavaScript when JavaScript is turned off.
Can you have a version of your app that submits the form to the server and have the JSON serialisation done on the server side?