AJAX (Asynchronous JavaScript and XML) is a technique for creating seamless interactive websites via asynchronous data exchange between client and server. AJAX facilitates communication with the server or partial page updates without a traditional page refresh.

learn more… | top users | synonyms (1)

3
votes
2answers
130 views
+50

Browser aborting ajax requests sporadically without return any errors

In my project (PHP w/ symfony2) I do a lot of ajax requests in every page. I'm having a lot of problems with them because it looks like browsers (tested in Chrome and Firefox) are aborting requests ...
0
votes
3answers
93 views
+50

Access control and XHR requests

I'm struggling with access control implementation for custom framework. RBAC granularity is not needed so I decided to go with some kind of ACL where resources will be controller actions. Here is ...
3
votes
0answers
34 views
+200

Cross origin OAuth authentication with ServiceStack

I would like to use my API website for authentication & authorisation of users and ideally keep my UI site purely static content (html, js, css). I have configured ServiceStack's OAuth & ...
2
votes
1answer
116 views
+100

Why does this jQuery AJAX PUT work in Chrome but not FF

In Chrome this does an HTTP PUT just like it should, but in FireFox 21 it doesn't. $("#createTeamButton").click(function () { if (teamCreationValidator.form()) { var teamObject = new ...