Posts by Cesar André • 261 points
2 posts
-
21
votes4
answers7389
viewsQ: How to make Ajax requests, with Jquery, on different domains?
It is possible to request a POST type to a url that is not part of the domain of our application? $.ajax({ type: "POST", url: "http://www.dominioexterno.com.br/acao/", data: { var1:…
-
5
votes2
answers3379
viewsQ: How to avoid sending PHP requests in a row?
Well, the situation is that there are some forms on my website. These forms are programmed to trigger emails using the Phpmailer class. What happens is the following, if the page takes a little time…