I'm thinking of building an application for myself that is similar to Google Analytics, Getclicky, etc.

I've noticed that all of these websites use Image beacons to send data to the servers.

Aside from the size overhead, is there any reason to not use JSONP using jQuery?

link|improve this question
Also see Why does Google Analytic request a GIF file? – alex May 15 '11 at 0:40
3  
The point of JSON-P is to get data from a different origin … analytics scripts only send data. – Quentin May 15 '11 at 0:40
Are there any browsers that don't support JSONP? – jake May 15 '11 at 0:43
1  
If you can load a script on a different server (such as using Google's CDN), your browser supports it (should have support since the dawn of web almost). – alex May 15 '11 at 0:44
feedback

1 Answer

up vote 6 down vote accepted

JSONP is great when you want a response with meaningful data. In the case of analytics you dont care about the result. The easiest fastest and simplest way to send a GET request to a remote server is by requesting an image. And if you don't care what the response is, then anything else is needless complexity.

link|improve this answer
+1 this sounds right to me – alex May 15 '11 at 0:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.