Cross domain ajax requests are denied, but I can around it by this:
$(document).ready(function () {
var data = ...;
$('<img>').attr('src', 'http://domain.com?data=' + escape(data)).appendTo('body');
});
So if I really want I can send data to another domain. Also I can get data the same way, but on load I can for example move it on canvas and then read pixels.
So what is the point in this restriction and what it can save from?