I was checking my website activity by opening console in chrome and there was nasty ajax activity.. but when I checked the stackoverflow and facebook console in chrome there was no activity .. No I am wondering what are they doing to make ajax request why is there no activity for them..
Asked
Active
Viewed 295 times
0
-
1Just wait a while and you'll see them – Musa Mar 30 '13 at 19:45
-
Yes, wait for a while and you'll see them. facebook do uses polling. – Zain Shaikh Mar 30 '13 at 19:49
-
No dear there things are really quiet.. :) – spiral Mar 30 '13 at 20:05
1 Answers
1
There is something called Polling. It is called Push Technology, where the server pushes the code from it to the web page. This can be done through web sockets.
Few related things could be:

Community
- 1
- 1

Praveen Kumar Purushothaman
- 164,888
- 24
- 203
- 252
-
1
-
2
-
Check out the related terms. Also, google for [`faye`](http://faye.jcoglan.com/). @AzamKhan. – Praveen Kumar Purushothaman Mar 30 '13 at 19:46
-
is it ok if I am using ajax requests and that shows fussy activity.. seems very immature though. – spiral Mar 30 '13 at 20:02
-
Generally newbies do that. Even I do that. Nothing wrong. Only problem would be, you will be requesting the server and if there are more number of users, and simultaneous requests go to the server, it cannot handle. – Praveen Kumar Purushothaman Mar 30 '13 at 20:04
-
Please tell me book names on this topic separate articles make no sense – spiral Mar 30 '13 at 20:12
-
Ah.. You need to go by google, not by books. That's my suggestion. – Praveen Kumar Purushothaman Mar 30 '13 at 20:15
-