tengo un problema, quiero crear una clase de JavaScript:clases en JavaScript utilizando prototipo
function Calculatore(txt,elements) {
this.p= new Processor();
this.output=txt;
$(elements).click(this.clickHandler);
}
Calculatore.prototype.clickHandler = function() {
var element=$(this);
// Code Here
// "this" contains the element.
// But what if I want to get the "output" var?
// I tried with Calculatore.prototype.output but no luck.
}
Entonces, ¿cómo puedo solucionar esto?
oh, me salvaste el pelo, gracias! – elios264