jQuery JSON encode set of input values
- by gurun8
I need tp serialize a group of input elements but I can't for the life of me figure out this simple task.
I can successfully iterate through the targeted inputs using:
$("#tr_Features :input").each(function() {
...
}
Here's my code, that doesn't work:
var features = new Array();
$("#tr_Features :input").each(function() {
features +=…