i have an own js-class and try to use jquery's $(this) and object-this in an click-event.
jquery's $(this) works fine, but the object-this is not defined.
http://jsfiddle.net/j33Fx/2/
var myclass = function(){
this.myfunction = function(){
alert('myfunction');
}
this.buttonclicked = function(){
alert('buttonclicked');
}
this.writeout = function(){
var buttoncode = '<button class="mybutton">click</button>';
$('body').append(buttoncode);
$('.mybutton').click(function(){
alert('Button: '+$(this).attr('class'));
this.buttonclicked();
});
this.myfunction();
}
}
var x = new myclass();
x.writeout();
When i click the appended button, i get an alert with the classname of the Button, but my function "this.buttonclicked" seems not to be a function.
Any ideas?