J o: Window Object

Beitrag lesen

Hey,

Ja, kleiner Anfänger fehler...

function ready() {

	this.foo = function(){ console.log('hmz')}
	this.bar = function(fun){this[fun]()}
  $('body').queue(function(){ this.bar('foo') }); //1
	this.bar('foo')	//2
}

var r = new ready();

Kann auch nicht funktionieren weil this (1) nicht this (2) ist.

Gruß
Jo