diegodfsd
8/6/2011 - 4:05 AM

gistfile1.js

var obj = (function($){
    return {
        nome: "diego",
        metodo: function(idade){
            return idade;
        },
        metodo2: function(id){
            return $(id).html()
        }
    }
})(jQuery);

console.log( obj.nome + ", "+ obj.metodo(26) );
console.log( obj.metodo2("div p:last") );