Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

so I am building my first plugin for jquery I have an init method

init: function(options, elem) {
var self = this;

This calls a couple of methods this.slide(elem); this.lightbox(elem);

however in the lightbox method I try and call my custom method setpositon using

self.setposition(); //error Object [object Window] has no method 'setposition'

or

this.setposition() // Object # has no method 'setposition'

how do I refer to the object I created?

share|improve this question
Could you create a jsFiddle please? – Jeff Watkins Jun 8 '12 at 14:05
jsfiddle.net/emM86 – welovedesign Jun 8 '12 at 14:07

1 Answer

var myObj = {
     init: function(){
         var self = this;
         this.alert();
         myObj.alert();
         self.alert();
     },
     alert: function(){
         alert('Im called!');
     } 
 };

myObj.init();​

See it on jsFiddle.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.