Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Reorganzing the jQuery source (first phase). | John Resig | 2007-09-08 | 1 | -157/+0 |
| | |||||
* | Integration of Mike Alsup's excellent form serialization code. The benefits ↵ | John Resig | 2007-09-05 | 1 | -0/+33 |
| | | | | | | | | | | | | | | | | | | are as follows: - New method: .serializeArray() This returns an array of name/value pairs representing the contents of a form, or individual input elements. - Enhancement: .serialize() The results are correct now (as opposed to the mess from before), and allows you to serializes forms directly (rather than just the input elements). - Enhancement: .val() This now returns the correct value when dealing wih selects. Additionally, when dealing with multiple selects, it returns an array of values. Based upon Mike's code: http://malsup.com/jquery/form/comp/form.js and test suite: http://malsup.com/jquery/form/comp/test.html | ||||
* | Added support for: | John Resig | 2007-09-03 | 1 | -2/+2 |
| | | | | | | | | | | | | | - Cross Domain getScript $.getScript("http://foo.com/script.js"); - JSONP $.ajax({ url: "script.js", type: "jsonp" }); $.getJSON("script.js?callback=?"); - Cross Domain JSONP/getJSON $.getJSON("http://foo.com/script.js?callback=?"); - No-cache Ajax Requests $.ajax({ url: "test.html", cache: false }); | ||||
* | Added support for a new :header psuedo-selector (only selects H1-H6 elements). | John Resig | 2007-08-31 | 1 | -1/+1 |
| | |||||
* | Complete overhaul of the Ajax test suite, it's now passing in all browsers. ↵ | John Resig | 2007-08-19 | 1 | -1/+1 |
| | | | | | | | | | | In order to achieve this I had to fix a numbe r of bugs in the suite itself, along with other random bugs that popped up. The following bugs were resolved along the wa y: #1236 (.extend() keeps processing when it hits nulls), #1028 (.extend() now works recursively), #1080 ($.get no longer overwrites the data parameter), #1210 (Creating script and link tags now work), and #1463 (jQuery.global has been re-too led to no longer leak memory and slow things down). | ||||
* | Fixed non-unique results from .parent(), .parents(), .next(), etc. (Bug #1449) | John Resig | 2007-08-19 | 1 | -1/+1 |
| | |||||
* | Integrated the custom fx test suite into the main test suite. All tests are ↵ | John Resig | 2007-07-29 | 1 | -2/+23 |
| | | | | now run automatically. Removed the old suite, as it was no longer needed. | ||||
* | Making the test suite a little more XML-compliant. | John Resig | 2007-07-08 | 1 | -2/+2 |
| | |||||
* | Disabling Ajax tests for now - too many timeouts. | John Resig | 2007-06-29 | 1 | -1/+1 |
| | |||||
* | Fix for #1169 | Brandon Aaron | 2007-05-13 | 1 | -0/+1 |
| | |||||
* | Completed test for Rev 1820 (#1044) | Brandon Aaron | 2007-04-30 | 1 | -0/+1 |
| | |||||
* | Added support for finding elements that have underscores in their name ↵ | John Resig | 2007-04-28 | 1 | -0/+2 |
| | | | | (along with other allowed characters). Fix for ticket #1084. | ||||
* | Fixed some more bugs with the test suite, made some minor file size tweaks ↵ | John Resig | 2007-03-25 | 1 | -3/+5 |
| | | | | to the selector code. | ||||
* | Added test for #945 | Jörn Zaefferer | 2007-03-25 | 1 | -1/+4 |
| | |||||
* | Added test for #968 | Jörn Zaefferer | 2007-03-25 | 1 | -1/+1 |
| | |||||
* | Added UTF8 Selector support (#1001) and fixed infinite selector loops ↵ | John Resig | 2007-03-25 | 1 | -0/+6 |
| | | | | (#1025). You can now select elements by UTF8-based IDs, classes, and attributes. | ||||
* | Added a fix and test for bug #978 (Appending elements into an IFrame, in IE). | John Resig | 2007-03-24 | 1 | -0/+1 |
| | |||||
* | Added test for #745 | Jörn Zaefferer | 2007-01-31 | 1 | -1/+1 |
| | |||||
* | Updated testsuite: To prevent crashes in Safari, each test waits for 250 ↵ | Jörn Zaefferer | 2007-01-14 | 1 | -1/+1 |
| | | | | milliseconds before running the next | ||||
* | Fixed test for object/param selection (thanks Andrea) | Jörn Zaefferer | 2007-01-07 | 1 | -2/+2 |
| | |||||
* | Updated test for #750 | Jörn Zaefferer | 2007-01-03 | 1 | -0/+5 |
| | |||||
* | Moved all the expressions tests over into selector area, out of the main suite. | John Resig | 2006-12-31 | 1 | -0/+1 |
| | |||||
* | Fix for #745 | Jörn Zaefferer | 2006-12-30 | 1 | -2/+2 |
| | |||||
* | Improved testsuite (pass/fail indicator already exists in markup) | Jörn Zaefferer | 2006-11-20 | 1 | -1/+2 |
| | |||||
* | Testsuite 2.0 | Jörn Zaefferer | 2006-11-18 | 1 | -10/+8 |
| | |||||
* | Modified core and form test suites to use a single stylesheet; Modified ↵ | Jörn Zaefferer | 2006-10-26 | 1 | -2/+4 |
| | | | | form.js to use :submit instead of [@type=submit] and :image... | ||||
* | Fix and tests for appending HTML options to select elements. | Brandon Aaron | 2006-10-17 | 1 | -1/+1 |
| | | | | Fixed previous tests for 193 and 170. | ||||
* | Added tests for 193 and 170. | Brandon Aaron | 2006-10-17 | 1 | -31/+32 |
| | | | | Removed unused line of code from fx. | ||||
* | css('display') works slightly differently in Safari. Also, the test suite ↵ | John Resig | 2006-10-03 | 1 | -4/+4 |
| | | | | having <input checked/> doesn't work in Safari, at all. Fixed to be standards compliant. | ||||
* | Refactored and fixed test suite to run async tests | Jörn Zaefferer | 2006-09-30 | 1 | -3/+5 |
| | |||||
* | Refactored test suite to allow async tests (use stop() before starting an ↵ | Jörn Zaefferer | 2006-09-19 | 1 | -1/+1 |
| | | | | async request, use start() when finished), added test for bug #164 | ||||
* | Refactored test suite once more, as proposed by John | Jörn Zaefferer | 2006-09-17 | 1 | -3/+7 |
| | |||||
* | Added test for bug #190 | Jörn Zaefferer | 2006-09-16 | 1 | -1/+1 |
| | |||||
* | Fixed bug #194, added regression tests | Jörn Zaefferer | 2006-09-16 | 1 | -1/+1 |
| | |||||
* | Refactored test suite: All tests are now compiled into one file, runs much ↵ | Jörn Zaefferer | 2006-09-16 | 1 | -1/+1 |
| | | | | faster and does not require ugly synchronization; Changed build.xml (tested) and Makefile (not tested!); Replaced calls to cmpOK() with ok(), removed cmpOK(); Tests can now call reset() to be able to always test against the unmodified test setup | ||||
* | Added test to verify bug #160, had to modify fixture (index.html) | Jörn Zaefferer | 2006-09-09 | 1 | -3/+3 |
| | |||||
* | Added more test for attr, one for filter; Added test to check IE issue ↵ | Jörn Zaefferer | 2006-09-08 | 1 | -0/+2 |
| | | | | $('input').attr('name', 'something'), modified fixture to test this | ||||
* | Improved test suite to reset fixture after each test, added selects to test ↵ | Jörn Zaefferer | 2006-09-04 | 1 | -10/+26 |
| | | | | ':selected'; Added docs for index(obj); Modified is(expr) to return false for an invalid expression, changed docs, too; Added lots of testcases; Changed filename of testfiles: adding leading zeros | ||||
* | Massive overhauls to the test suite - it is now generated dynamically, along ↵ | John Resig | 2006-08-14 | 1 | -15/+49 |
| | | | | with the documentation. | ||||
* | Moved the test directory. | John Resig | 2006-08-13 | 1 | -0/+21 |