Im using the jquery-forms-plugin and its working great! But now i want to append an array in the beforeSubmit function.
questions = ['hi?','yo?','lol??'];
formData.push({name:'questions',value:questions});
But when i recieve this at my webserver (Using flask.py) it comes just as a plain string. like this: hi?,yo?,lol??
Any input why it does not come as an array or list?
Thanks!