Let's assume we have the following form. Once it is submitted is there a way to visualise the content of the request in json form without a server side script?
<html>
<head>
</head>
<body>
<form class="dump" action="#" method="post">
<fieldset>
<legend>Dump inputs</legend>
<label for="name">Name</label>
<input id="name" type="text" size="25" />
<label for="email">email</label>
<input id="email" type="text" size="25" />
<input type="submit" id="submit" value="Send" />
</fieldset>
</form>
</body>
</html>
Expected output:
{"name":"something","email":"something"}
Solution
In Chrome: View > Developer > Developer Tools > Network > All > Name > Headers