CARVIEW |
jeresig
(John Resig)
- You’re not logged in!
- Login
- Pricing & Signup
- Name
- John Resig
- Website/Blog
- https://ejohn.org/
- Company
- Mozilla Corporation
- Location
- Boston, MA
- Member Since
- Feb 28, 2008
Following 9 coders and watching 34 repositories view all →
Public Repositories (12)
-
processing-js
A port of the Processing visualization language to JavaScript.
Last updated Thu Apr 08 18:06:06 -0700 2010
-
testswarm
Distributed continuous integration testing for JavaScript.
Last updated Thu Mar 25 08:49:52 -0700 2010
-
sizzle
A sizzlin' hot selector engine.
Last updated Tue Mar 23 07:39:17 -0700 2010
-
dromaeo
JavaScript Performance Test Suite
Last updated Thu Mar 11 14:33:28 -0800 2010
-
jquery-workshop
The code behind a workshop for learning about jQuery.
Last updated Thu Mar 04 10:36:54 -0800 2010
-
jquery.hotkeys
jQuery Hotkeys lets you watch for keyboard events anywhere in your code supporting almost any key...
Forked from tzuryby/jquery.hotkeys Mon Feb 22 15:02:33 -0800 2010
Last updated Mon Feb 22 23:07:59 -0800 2010
-
retweet
A simple retweet button.
Last updated Mon Oct 05 12:17:51 -0700 2009
-
fireunit
A Firebug extension for JavaScript testing.
Last updated Sun Oct 04 18:47:58 -0700 2009
-
selectortest
A test suite for the Selectors API specification.
Last updated Mon Sep 21 18:58:31 -0700 2009
-
jeresig.github.com
A GitHub-powered web site.
Last updated Tue Dec 16 20:27:56 -0800 2008
-
env-js
A pure-JavaScript browser environment.
Last updated Sun Oct 12 08:27:10 -0700 2008
-
vote
Reddit, Hacker News, Digg voting script for Ubiquity.
Last updated Thu Sep 04 12:37:35 -0700 2008
Public Activity 
-
ded2653
Fail on all falsy values.
-
1018717
Expose the properties of each iterated object.
-
01f3c4c
Include the same function execution functionality for the html...
-
58eb682
Add in support for executing functions that are inline in the ...
-
fd0a815
No need to expose jQuery._ anymore as all methods are generate...
-
4a64f9a
Removed extra semicolon leftover from recent tweaking.
-
2dbf603
More changes to the detection of types in jsDump's typeOf.
-
e242507
Change the typeOf checks in QUnit to be more accurate.
-
79e9885
Re-worked the templating syntax based upon the forum feedback....
@darwin: I did some additional testing. It looks like those properties work on the iPhone when you manually scroll - but not on the Palm Pre. And if you call window.scrollTo(200, 200); window.scrollX and window.scrollY will still be 0. I'll see if I can check into some other workarounds but this will be a real bear to unit test.
@jdalton: Doesn't appear to be. Searching around the 'net yields no known solution (including a Scriptaculous ticket that's been open since '07). Naturally, if a solution is known it would be greatly appreciated.
-
dab1d74
Mobile WebKit browsers don't support accessing the scroll posi...
-
d6b1f10
Make it so that the display is updated, at least, once a secon...
-
13d8d37
Updated the jQuery script file to run against a single Git clone.
-
5064768
Adjust the version matching for webOS.
-
ed0306b
Adding in Palm Pre webOS support.
-
315fbb7
Allow for submission of jobs targeting mobile phones.
-
1bb55ba
Updating Mobile WebKit icons.
-
c9cf20c
Adding in Mobile Safari support.
-
298c81a
Need to expose the isLocal change globally as well.
-
59124f9
Temporarily disable ajax tests when running in TestSwam.
-
1ba2df0
Use custom events for testing unbind instead of the, potential...
-
3b221da
Adjust isPlainObject test to run in an iframe.
-
96ea3d6
Make sure the offset tests work without a built jQuery file.
-
273822c
Update other remote test URLs as well.
-
fa80693
Changed the order of the tests to run in the same order in whi...
-
f6a50ca
Handle auto-running of the TestSwarm injection script in the t...
-
8effe3a
Made it so that you no longer need to build jQuery in order to...
-
852d3d0
Expose getText, isXML, and contains on the Sizzle object for o...
This was a bug fix from what was in 1.3.2, we're now implementing string trimming in accordance with the built-in string trimming - and this includes trimming non-strings (which is why we do .toString() in the first place). In the built-in string trimming working against null/undefined is equivalent to trimming the global object which is highly counter-intuitive - so we return an empty string instead (which a much more intuitive result and more inline with the rest of the jQuery API).
Of course none of those solutions handle trimming false or 0 correctly.