box_tpv1 = {
box:$("#box_tpv1"),
open:function(mensaje,f_ok,f_x){
this.box.show()
}
}
And when I call this box_tpv1.open() won't work, but If I write inside open function $("#box_tpv1").show() it works.
And when I call this box_tpv1.open() won't work, but If I write inside open function $("#box_tpv1").show() it works. |
|||
|
In your case, You might as well simply call |
|||||||
|
|
there might be issues on the context this function is being called and that depends upon from where are you calling this function from try calling like this
|
|||
|
|
|
I don't know why but I solved it this way, I can get with this.box the value inside the object methods but doesnt work the jquery selector, if I do that it works
|
|||
|
|
thisin your example refers to the anonymous function. – BenM Jan 31 at 9:16console.log(this.box);in open function to see what it contains. – Spin0us Jan 31 at 9:16