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?