jquery - Getting data iterating over wtform fields -
i've got form, , number of dynamically adding fields, class editbook(form): title = textfield('title', validators = [required()]) authors = fieldlist(textfield()) that's how append them $('form').append('<input type="text" class="span4" id="authors-' + fieldcount +'" name="authors-' + fieldcount +'" placeholder="author ' + fieldcount +'">'); i want data theese inputs. how can iterate on them, using python? (or how can send collected data jquery server? i'm new js , jquery) guess inputs aren't connected authors fieldlist. update my inputs aren't connected editbook though append them it. form.data solve rest of problem, when attach inputs form. (now keyerror, trying access form.data['authors-1']) now try add single authors field copy later. renders invisible, unknown reason. in blank space should input, similar "author-1...