Posts by w35l3y • 128 points
3 posts
-
0
votes3
answers652
viewsA: JSON for PHP via AJAX
From what I understand, when I click Add you want to add the item to a table and send the data to the server. Click Enviar pedido, you want to have access to the previously added items. Well, to…
-
0
votes2
answers57
viewsA: Wrong loop Avascript
form_data contains 3 attributes: status, amount, remove-row $.each performs the function once for each element of form_data So he’s counting three times. If you want to count the number of clicks…
javascriptanswered w35l3y 128 -
1
votes3
answers857
viewsA: Delete Confirmation Prompt with Javascript and ASP
Use your event onclick as follows: onclick="return confirm('Deseja realmente excluir?')" When this event returns false, behavior is similar to calling event.preventDefault(); I don’t know ASP, but I…
javascriptanswered w35l3y 128