var NaviPl = function() { var that = this; this.ShowSets = function(refresh) { //bla bla } this.ToggleContent = function () { that.ShowSets(); } return this; } NaviPl().ToogleContent();