jquery/src/deprecated.js

12 lines
234 B
JavaScript
Raw Normal View History

// Limit scope pollution from any deprecated API
2012-11-08 00:42:10 +00:00
// (function() {
// The number of elements contained in the matched element set
jQuery.fn.size = function() {
return this.length;
};
jQuery.fn.andSelf = jQuery.fn.addBack;
2012-11-08 00:42:10 +00:00
// })();