[jQuery] Re: Call object method onclick

2009-01-08 Thread fatslags2...@gmail.com

Thanks for the solution, works great.

On Jan 4, 7:02 pm, Balazs Endresz  wrote:
> Hmm, I don't think you should do this:
> Viewer = new Viewer;
> this will overwrite your class and you can't instantiate it again!
>
> rather:
>
>     initialize: function()
>     {
>         var self=this;
>         $("#thumbs img:first").click(function(){
>           self.doX()
>         });
>     },
>
> or
>
>     initialize: function()
>     {
>         var self=this;
>         $("#thumbs img:first").click(function(){
>           var el=this; //this is the element here
>           (function(){
>                this.doX();  //this refers to yourobjecthere
>                $(el).something();
>           }).call(self);
>         });
>     },
>
> On Jan 4, 5:57 pm, "Alexandre Plennevaux" 
> wrote:
>
> > this worked for me:http://jsbin.com/utahi
>
> > On Sun, Jan 4, 2009 at 5:31 PM, fatslags2...@gmail.com
>
> >  wrote:
>
> > > function Viewer()
> > > {
>
> > > };
>
> > > Viewer.prototype.constructor = Viewer;
>
> > > Viewer.prototype =
> > > {
> > >    getFullAreaId: function() { return this._fullAreaId; },
> > >    setFullAreaId: function(fullAreaId) { this._fullAreaId =
> > > fullAreaId; },
>
> > >    initialize: function()
> > >    {
> > >        $("#thumbs img:first").click(/* execute this.doX on mouse
> > > click */);
> > >    },
>
> > >    doX: function()
> > >    {
> > >        alert(this.getFullAreaId());
> > >    }
> > > };
>
> > > How can I make the click event execute the doXmethod?
>
> > > Regards,
> > > FatSlags2004


[jQuery] Re: Call object method onclick

2009-01-04 Thread Balazs Endresz

Hmm, I don't think you should do this:
Viewer = new Viewer;
this will overwrite your class and you can't instantiate it again!

rather:

initialize: function()
{
var self=this;
$("#thumbs img:first").click(function(){
  self.doX()
});
},

or

initialize: function()
{
var self=this;
$("#thumbs img:first").click(function(){
  var el=this; //this is the element here
  (function(){
   this.doX();  //this refers to your object here
   $(el).something();
  }).call(self);
});
},

On Jan 4, 5:57 pm, "Alexandre Plennevaux" 
wrote:
> this worked for me:http://jsbin.com/utahi
>
> On Sun, Jan 4, 2009 at 5:31 PM, fatslags2...@gmail.com
>
>  wrote:
>
> > function Viewer()
> > {
>
> > };
>
> > Viewer.prototype.constructor = Viewer;
>
> > Viewer.prototype =
> > {
> >    getFullAreaId: function() { return this._fullAreaId; },
> >    setFullAreaId: function(fullAreaId) { this._fullAreaId =
> > fullAreaId; },
>
> >    initialize: function()
> >    {
> >        $("#thumbs img:first").click(/* execute this.doX on mouse
> > click */);
> >    },
>
> >    doX: function()
> >    {
> >        alert(this.getFullAreaId());
> >    }
> > };
>
> > How can I make the click event execute the doX method?
>
> > Regards,
> > FatSlags2004


[jQuery] Re: Call object method onclick

2009-01-04 Thread Alexandre Plennevaux

this worked for me: http://jsbin.com/utahi

On Sun, Jan 4, 2009 at 5:31 PM, fatslags2...@gmail.com
 wrote:
>
> function Viewer()
> {
>
> };
>
> Viewer.prototype.constructor = Viewer;
>
> Viewer.prototype =
> {
>getFullAreaId: function() { return this._fullAreaId; },
>setFullAreaId: function(fullAreaId) { this._fullAreaId =
> fullAreaId; },
>
>initialize: function()
>{
>$("#thumbs img:first").click(/* execute this.doX on mouse
> click */);
>},
>
>doX: function()
>{
>alert(this.getFullAreaId());
>}
> };
>
> How can I make the click event execute the doX method?
>
> Regards,
> FatSlags2004