NOTE: This is deprecated. This repository has not been maintained anymore. Please see https://github.com/tmtk75/jquery-xhr.
Provide window, jQuery and $ to node integrating jquery, jsdom and xmlhttprequest.
Let's say you use npm, add "node-jquery-xhr" to dependencies section of package.js
require("node-jquery-xhr")
You can access like this
window.document
body = $("body")
Also $.ajax, too.
$.ajax({
method: 'get',
url: 'http://www.yahoo.com',
success: function(r) {
console.log(r);
}
});
- use jquery 1.8.3 https://github.com/coolaj86/node-jquery
- support $.ajax using xmlhttprequest
- first release
MIT License