Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm doing a youtube player in jQuery, and I make this as a jQuery plugin, ex:

 $.fn.extend({

        uplayList: {},

        CreateUplayList: function (options) {
            this.each(function  () {
                $(this).uplayList = new $.playList(this, options);
            });
        }
    });

But, if I do:

$('#playlist').CreateUplayList({....});

And I want access at the instance:

$('#playlist').uplayList.play();

This not work, that make sense, because $('#playlist') is a selector. I see in others plugins something like that:

$('#playlist').pluginname('play');

How can I apply this??

share|improve this question

1 Answer

up vote 5 down vote accepted

See the methods section of the jQuery Plugin Authoring Guide.

share|improve this answer
+1 Oh, and @Exos always remember... "jQuery.fn is pronounced jQuery effin' " – pixelbobby May 17 '11 at 17:40
whel, so dont me aswer to. I do it: pastebin.com/TDLFLh6V and now $('#obj').UplayList('play'); or $('#obj').UplayList('setVolume',75); works! using data i save the id of the player (unique and generated on runtime). Thx! – Exos May 17 '11 at 20:31

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.