Posts by rdeandrade • 81 points
4 posts
-
5
votes4
answers1951
viewsA: Upload with Ajax and formData does not send data
It seems that your data is not in Json format, can put the that that console.log(data); Is exhibiting? But by the error that appears on your console, it is not in format Json, you need to check the…
-
0
votes3
answers1157
viewsA: Regex check IP
Try using that regex: ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$ At first it will validate each line of your Textedit, starting from…
-
2
votes3
answers1360
viewsA: Select "select" element with jquery
You can use the following: $("select[id^=selecionados]"); This will bring the element you described.
-
1
votes2
answers1225
viewsA: Maven + Spring MVC + JSP project, how to share view files?
What you can do in this case is a static file server and put it on an apache-only server. That’s common. But in the case if it is only HTML, CSS, JS, Images and etc. So in all the other modules you…