
New version: jQuery 1.5.1
![[jQuery logo]](https://habrastorage.org/getpro/habr/post_images/3b6/a83/b28/3b6a83b286024d3c0135bd5d90ff9772.png)
Resig listed the forty-two major changes that have been made to this version of jQuery. Basically, they come down to junkiness, getting rid of bugs. But there is one visible change - three new settings were added
1) isLocal settingcontrols the recognition of the protocol used as local, that is, it allows you to supplement jQuery auto-recognition, which currently considers local only those resources that are loaded using the “file”,
2) Setting mimeType allows you to override the
3) Setting xhrFields allows you to transfer an array of necessary settings (for each specifying fieldName and fieldValue, that is, the name and value of some field) to the XHR object. Say you can set withCredentials to trueif you need to request a server from another domain and send username, password and cookies there
This version