Possible duplicate:Empty "for the Facebook ajax loop,what does the AJAX response call like (;;); {json data} mean?
While analyzing some facebook ajax body requests, I noticed that each code starts with for (;;);, following the json object
for (;;);
sort of
for (;;); {"a":1,"b":"\u003cdiv"}
I went through this structure but found nothing.
What could be the reason for this โforโ structure at the beginning of each ajax answer?
A forlike this (note that there is no ';' after the parenthesis):
for
for (;;)
means an infinite loop in which operators between brackets are executed.
Instead, a for the following:
means endless loop without instruction.
, AJAX. , , - , (ob).
.