jQuery
var $ = jQuery = window.jQuery = function(){
return new jQuery.fn.init();
}
jQuery.fn = jQuery.prototype = {
init:function(){
return this;
},
size:function(){
alert("size");
},
jquery:"1.0.0"
}
jQuery.fn.init.prototype = jQuery.fn;
jQuery().size();
alert($().jquery);