Posts by emanuelpoletto • 62 points
4 posts
-
2
votes2
answers31
viewsA: Problems with Variables in JS
Try to adjust the js thus: $(document).ready(function(){ $('.class_codbar input[id^=cod]').blur(function(){ var parent = $(this).closest('[id^=linha]'); var $descricao_produto =…
-
0
votes3
answers1124
viewsA: How to pass javascript array to form and get the values in php?
Browsers cannot handle a filelist input[type=file]. We can maintain your approach by generating the array with the files. But you can’t return the same array after the input[type=file], altering or…
-
0
votes2
answers117
viewsA: Picking up javascript arrays for sending in the form
I suspect you can’t do what you’re trying to do because in this array nomess you do not have the file path, but only their names. The most common browsers do not provide the full file address for…
-
2
votes3
answers1124
viewsA: How to pass javascript array to form and get the values in php?
I handled here exclusively the task of adding a new input type="file" already "populated", as it seems you need. Every new file added in input name="imagem", is performed a clone of it within the…