nodescore/node_modules/jQuery
Rob Canning e22c5abe6a moving old projects from cold storage to git for possible revival 2023-12-06 11:59:35 +01:00
..
lib moving old projects from cold storage to git for possible revival 2023-12-06 11:59:35 +01:00
src moving old projects from cold storage to git for possible revival 2023-12-06 11:59:35 +01:00
test moving old projects from cold storage to git for possible revival 2023-12-06 11:59:35 +01:00
tmp moving old projects from cold storage to git for possible revival 2023-12-06 11:59:35 +01:00
.npmignore moving old projects from cold storage to git for possible revival 2023-12-06 11:59:35 +01:00
LICENSE-MIT moving old projects from cold storage to git for possible revival 2023-12-06 11:59:35 +01:00
README.md moving old projects from cold storage to git for possible revival 2023-12-06 11:59:35 +01:00
grunt.js moving old projects from cold storage to git for possible revival 2023-12-06 11:59:35 +01:00
package.json moving old projects from cold storage to git for possible revival 2023-12-06 11:59:35 +01:00

README.md

node-jQuery

A stupid-simple wrapper over jQuery for Node.JS (server). Currently 1.7.2.

Node.JS

npm install jQuery

var $ = require('jQuery');

Examples

$("<h1>test passes</h1>").appendTo("body");
console.log($("body").html());

In Node.JS you may also create separate window instances

var jsdom = require('jsdom').jsdom
  , myWindow = jsdom().createWindow()
  , $ = require('jQuery')
  , jq = require('jQuery').create()
  , jQuery = require('jQuery').create(myWindow)
  ;

$("<h1>test passes</h1>").appendTo("body");
console.log($("body").html());

jq("<h2>other test passes</h2>").appendTo("body");
console.log(jq("body").html());

jQuery("<h3>third test passes</h3>").appendTo("body");
console.log(jQuery("body").html());

Output:

<h1>test passes</h1>
<h2>other test passes</h2>
<h3>third test passes</h3>

JSONP Example

var $ = require('jQuery');

$.getJSON('http://twitter.com/status/user_timeline/treason.json?count=10&callback=?',function(data) {
  console.log(data);
});