git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e6a481e
)
Added a quick shortcut to improve the speed of $(DOMElement) by over 2x.
author
John Resig
<jeresig@gmail.com>
Tue, 27 Nov 2007 01:03:49 +0000
(
01:03
+0000)
committer
John Resig
<jeresig@gmail.com>
Tue, 27 Nov 2007 01:03:49 +0000
(
01:03
+0000)
src/core.js
patch
|
blob
|
history
diff --git
a/src/core.js
b/src/core.js
index
a42e8f6
..
b9d5247
100644
(file)
--- a/
src/core.js
+++ b/
src/core.js
@@
-36,8
+36,14
@@
jQuery.fn = jQuery.prototype = {
// Make sure that a selection was provided
selector = selector || document;
+ // Handle $(DOMElement)
+ if ( selector.nodeType ) {
+ this[0] = selector;
+ this.length = 1;
+ return this;
+
// Handle HTML strings
- if ( typeof selector == "string" ) {
+ } else if ( typeof selector == "string" ) {
// Are we dealing with HTML string or an ID?
var match = quickExpr.exec( selector );