I want to create an json associative array that I can pass to a php script via AJAX.
The js script I've put together thus far, gathers the pertinent data, but I'm stuck on how to use that data to put together the json object. Below is what I've got so far. Help is appreciated.
Code:
var imgCaption = document.getElementsByName("imgCaption[]");
for (var k = 0; k < imgCaption.length; k++){
CaptionObj[imgCaption[k].id] = imgCaption[k].value
}