I download Jquery UI autoload, looking to remote-jsonp.html. This is ajax function but i open console.. I can\'t see any request in my console...
What is difference
dataType: jsonp
for cross-domain request, that means request to different domain and dataType: json
for same domain-same origin request.
Loads in a JSON block using JSONP. Adds an extra "?callback=?" to the end of your URL to specify the callback. Disables caching by appending a query string parameter, "_=[TIMESTAMP]", to the URL unless the cache option is set to true.
Read about same origin policy
Read more about jQuery AJAX