Показать сообщение отдельно
  #2 (permalink)  
Старый 25.06.2012, 20:13
что-то знаю
Отправить личное сообщение для devote Посмотреть профиль Найти все сообщения от devote
 
Регистрация: 24.05.2009
Сообщений: 5,176

function jQuery() {
    return new jQuery.prototype.init( arguments );
}

jQuery.prototype = {
    constructor: jQuery,
    init: function( selector, context ) {
        this[0] = "lala";
        this[1] = "tratata";
        this.length = 2;
        return this;
    },
    length: 0
}

jQuery.prototype.init.prototype = jQuery.prototype;

alert( JSON.stringify( jQuery() ) );
__________________
хм Russians say завтра but завтра doesn't mean "tomorrow" it just means "not today."
HTML5 history API рассширение для браузеров не поддерживающих pushState, replaceState
QSA CSS3 Selector Engine
Ответить с цитированием