Meanwhile, doing JSONP simply requires the data on the 3rd party server be delivered in a JSON format, while this requires the special 2kb packaging.
Its definitely a more secure way of obtaining remote data from untrusted 3rd parties, but the trade-off is that the 3rd party has to be setup to correctly deliver the data.
Also didn't see a list of browsers it supports. That would be helpful too. If it's widely supported, this could be a good way to get data feeds from 3rd party sites and not have to do any server-side processing on your end.
With JSONP you necessarily have to execute untrusted code, since JSONP works by loading JavaScript in a <script> tag.
Now we just need someone to encapsulate TCP/IP over it... then maybe DECnet over that...
I used JSONP, but one of the Facebook engineers told me that was a hacky/unsecure method.
http://www.sitepen.com/blog/2008/07/30/protected-cross-domai...
Works on IE7, FF3 and Chrome. And as pmjordan said it doesn't work on Opera(I use 9.52).