NaniG Posted January 22, 2014 Share Posted January 22, 2014 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....! :'( :'( Quote Link to comment https://forums.phpfreaks.com/topic/285572-get-the-textbox-attribute-names-as-well-as-values/ Share on other sites More sharing options...
gristoi Posted January 22, 2014 Share Posted January 22, 2014 use jquery: var input = $('#someId'); var type = input.attr('type').val(); var name = input.attr('name').val(); var maxLength = input.attr('maxLength').val(); .... build json string Quote Link to comment https://forums.phpfreaks.com/topic/285572-get-the-textbox-attribute-names-as-well-as-values/#findComment-1466180 Share on other sites More sharing options...
Ch0cu3r Posted January 22, 2014 Share Posted January 22, 2014 (edited) Building on gristoi code. Try http://jsfiddle.net/PY5j2/1/ Edited January 22, 2014 by Ch0cu3r Quote Link to comment https://forums.phpfreaks.com/topic/285572-get-the-textbox-attribute-names-as-well-as-values/#findComment-1466197 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.