Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 14217 |
anikendra |
1 |
define([
|
|
|
2 |
"./core",
|
|
|
3 |
"./traversing"
|
|
|
4 |
], function( jQuery ) {
|
|
|
5 |
|
|
|
6 |
// The number of elements contained in the matched element set
|
|
|
7 |
jQuery.fn.size = function() {
|
|
|
8 |
return this.length;
|
|
|
9 |
};
|
|
|
10 |
|
|
|
11 |
jQuery.fn.andSelf = jQuery.fn.addBack;
|
|
|
12 |
|
|
|
13 |
});
|