Posts by Wallace Magalhães • 1,242 points
52 posts
-
1
votes1
answer564
viewsA: Save fields from one page to another
In this case you would need to GET the data from page 1 to page 2 and save in a Hidden. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8">…
-
1
votes1
answer257
viewsQ: Is it wrong to mix $.post with $.ajax in jQuery?
I am making a login screen with Ajax, jQuery and PHP. Follows the code: $(document).ready(function(){ //Quando 'btnEntrar' for clicado $("#btnEntrar").click(function(){ //Envia por POST para a…