Posts by Breno Cupertino • 21 points
4 posts
-
0
votes1
answer169
viewsA: Java Web + Ajax + Servlets
My mistake was the lack of quotation marks on the Json value.
-
1
votes1
answer169
viewsQ: Java Web + Ajax + Servlets
I’m having a hard time trying to get the date in Ajax. When I run the code, I get the status 200 and network in the Chrome debugger I can see the return, but I can’t do anything else with the date,…
-
0
votes2
answers104
viewsQ: How does this function work within for?
var del = document.getElementsByClassName("del"); if (del != null) { for (var i=0; i<del.length; i++) { (function(i) { var id_cliente = del[i].getAttribute('value'); if (del[i].addEventListener)…
-
1
votes1
answer589
viewsQ: Editable line with PHP and Javascript
I’m trying to create an editable line, so that when I click on it, Js brings me the inputs, allowing me to make the changes in that line and perform the Update in the database. Like this picture I…