I have several forms on my page that all have the class "my_form". I have activated transloadit as follows :
$(function() {
$('.my_form').transloadit({
wait: true,
triggerUploadOnFileSelection: true
});
});
After the files upload and the form is submittted, the wrong form is submitted. Transloadit is submitting the last form on the page with the class "my_form", rather than the specific form I submitted.
Any idea how this is happening?