Estendendo a função $ .fn.init

Estou tentando estender o jQuery com o seguinte:

$.fn.extend({
    initCore:   $.fn.init,
    init:       function (selector, context, rootjQuery) {
        return $.fn.initCore(selector, context, rootjQuery);
    }
}),

No entanto, ele não parece funcionar direito, e criar coisas simples, como um alerta no clique, produz erros. Alguém consegue identificar o problema?

Desde já, obrigado!

questionAnswers(2)

yourAnswerToTheQuestion