Hi all,
I have a query.... have to get all the attribute names as well as values of textbox in json format. Below is the sample example how can i need to get the output...
<form action="" method="POST">
<input type="text" name="someName" id="someId" maxlength="12">
<input type="submit" name="submit" value="Submit">
</form>
When i click the submit button, i nedd to get all input types whether it could be textbox / textarea / checkbox / radio button in json format.
Example:
When i click on submit button, the output will be like these.....
{"type" : "text", "name" : "someName", "id" : "someId", "maxlength" : "12"}
If any body knows, Please give me some suggention with examples.
Thanks in advance....!
:'( :'(