vote up 1 vote down star

I've seen some jquery code where people extend the main object like:

 $('someId').myCustomObject();

Is this possible or am I mistaken? (if yes, how?)

flag

22% accept rate

2 Answers

vote up 2 vote down

Yes it's easily possible. The standard pattern for building extensions is:

(function($) {

  $.fn.myCustomObject = function(options) {
    var defaults = { ... };
    var opts = $.extend(defaults, options);

    $(this).each(function(i) {

      ... // Act on each item, $(this).
      ... // Use opts.blah to read merged options.

    });
  };

})(jQuery);

This allows you to use '$' in the plug-in, yet allows compatibility mode.

link|flag
vote up 0 vote down

I believe what you're looking for is jQuery.fn.extend:

jQuery.fn.extend

link|flag

Your Answer

Get an OpenID
or

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