jQuery JavaScript Library
Go to file
timmywil 9f88fa9165 Full test suite now passes in all browsers! There are probably some tweaks we can make to shorten and simplify.
- removeAttr now only uses setAttribute if camelCase setAttribute is not supported

  + Might want to rename jQuery.support.getSetAttribute

- tabIndex is a special case now for hooks where undefined should be returned.

  + Should we be checking if hooks returns undefined?  undefined might be the desired return value in future hooks.
    As of now, tabIndex is the only one that needs it, but the test suite will still pass if we don't check if hooks are undefined.
2011-04-03 19:13:39 -04:00
build Remove sed from post-build code, due to portability issues between GNU and BSD versions. 2011-02-12 13:53:04 +01:00
speed Fixes #8098. Use the fast document.head when available. Don't set unneeded "script.type = text/javascript". 2011-02-02 00:59:00 +01:00
src Full test suite now passes in all browsers! There are probably some tweaks we can make to shorten and simplify. 2011-04-03 19:13:39 -04:00
test Continuing IE7 testing, conditional attr fixes and hooks with feature testing. Will figure out a way to shorten after the test suite passes. 2011-04-03 19:13:39 -04:00
.gitattributes Mark *.jar files as binary. 2010-11-12 07:41:44 +02:00
.gitignore Introduce submodules, closes #8536 2011-03-15 20:16:09 +01:00
.gitmodules Update the Sizzle location to point to the newly-moved repo. 2011-03-28 13:10:12 -04:00
GPL-LICENSE.txt Updated the licensing information. 2006-08-21 19:36:44 +00:00
Makefile Merge branch 'master' into makefile_fixes 2011-03-22 21:55:49 +01:00
MIT-LICENSE.txt Updating year to 2011. 2011-01-04 06:52:26 -08:00
README.md Clarify cygwin instructions slightly and swap the order of arguments to which in Makefile because of a bug in current versions of MSYS that causes only the first argument to /bin/which to be searched. 2011-01-17 21:06:57 -06:00
version.txt Updating the source version to 1.6pre. 2011-03-31 15:28:33 -04:00

jQuery - New Wave Javascript

What you need to build your own jQuery

In order to build jQuery, you need to have GNU make 3.8 or later, Node.js 0.2 or later, and git 1.7 or later. (Earlier versions might work OK, but are not tested.)

Windows users have two options:

  1. Install msysgit (Full installer for official Git), GNU make for Windows, and a binary version of Node.js. Make sure all three packages are installed to the same location (by default, this is C:\Program Files\Git).
  2. Install Cygwin (make sure you install the git, make, and which packages), then either follow the Node.js build instructions or install the binary version of Node.js.

Mac OS users should install Xcode (comes on your Mac OS install DVD, or downloadable from Apple's Xcode site) and http://mxcl.github.com/homebrew/. Once Homebrew is installed, run brew install git to install git, and brew install node to install Node.js.

Linux/BSD users should use their appropriate package managers to install make, git, and node, or build from source if you swing that way. Easy-peasy.

How to build your own jQuery

First, clone a copy of the main jQuery git repo by running git clone git://github.com/jquery/jquery.git.

Then, to get a complete, minified, jslinted version of jQuery, simply cd to the jquery directory and type make. If you don't have Node installed and/or want to make a basic, uncompressed, unlinted version of jQuery, use make jquery instead of make.

The built version of jQuery will be put in the dist/ subdirectory.

To remove all built files, run make clean.

Building to a different directory

If you want to build jQuery to a directory that is different from the default location, you can specify the PREFIX directory: make PREFIX=/home/jquery/test/ [command]

With this example, the output files would end up in /home/jquery/test/dist/.

Troubleshooting

Sometimes, the various git repositories get into an inconsistent state where builds don't complete properly (usually this results in the jquery.js or jquery.min.js being 0 bytes). If this happens, run make clean, then run make again.

Questions?

If you have any questions, please feel free to ask on the Developing jQuery Core forum or in #jquery on irc.freenode.net.