The string
({"errors":"0","disponible":0})
isn't valid JSONP.
You have to wrap it in a callback function. That's why JSONP works
even though the browser can't read the results of the script tag as
plain text.
cbfunc({"errors":"0","disponible":0})
-- S.
