vote up 1 vote down star
1

Currently I'm writing a jQuery plugin with some options.

An example simplified piece of code from a web page:

<div id="div1"></div>
<div id="div2"></div>

$(document).ready(function(){
    $("#div1").myFunc({width: 100, height: 100});
    $("#div2").myFunc({width: 200, height: 200});
});

And here's a (again simplified) plugin code:

(function($) {
 $.fn.myFunc = function(options) {
  // extending default settings
  var options = $.extend( {
   width: 300,
   height: 200
  }, options);

     return this.each(function() {
      // doing something for example with #div1
         $(this).click(function() {
          // here I need to access ANOTHER (e.g. #div2) object's options
          // how can I do it?
         });
     });
 }
})(jQuery);

Well, the question is in the listing - how can I access another object's options from inside the plugin's function? Something like $("#div2").options.width

flag
sorry - should have write $("#div1"), $("#div2") in the first listing – sgi Oct 20 at 9:22
I think your return statement needs to be inside the function scope of your plugin too. At the moment, it is outside of it (but inside the function scope of the self-invoking anonymous function). Do you want to edit your question code? – Russ Cam Oct 20 at 9:25
oh, yeah, thank you - corrected – sgi Oct 20 at 9:30

3 Answers

vote up 0 vote down

Simple answer is: you can't. The options object passed in to the plugin in each instance is used to assign values to properties of a locally declared object, options which will not be accessible outside of the plugin function's scope.

You might come up with some ways to do what what you want, for example, additional properties of the options object that you pass in.

link|flag
Can I write one more function inside the plugin which may pass the needed option outside? – sgi Oct 20 at 9:32
vote up 0 vote down
(function($) {
 $.fn.myFunc = function(options) {
  var options = $.extend( {
   width: 300,
   height: 200
  }, options);

     return this.each(function() {

         $(this).bind('click', {myOptions: options}, function(event) {
              optionsHere = event.data.myOptions;
         });
     });
 }
})(jQuery);

"In cases where that is not possible, you can pass additional data as the second parameter (and the handler function as the third)..."

jQuery bind

link|flag
vote up 0 vote down

You can accomplish this by using jQuery's .data(key, val) method to set those options before you access them in your plugin:

  // set 'options' for '#div2'
  $("#div2").data('options', {width: 500, height: 500});

  // get 'options' for '#div2' (this would be in your plugin code)
  var opts = $('#div2').data('options');
  alert('options.height:' + opts.height + '\n'
        'options.width:' + opts.width);

As you are storing data to a dictionary-like object, you can set pretty much any kind of data you want to it:

  $("#div2").data('priority', 2);
  $("#div2").data('flagColors', ['red', 'white', 'blue']);
  $("#div2").data('parts', {arm: 2, legs: 2});

...and retrieve it later like so:

  var foo = $("#div2").data('priority');
  var foo2 = $("#div2").data('flagColors');
  var foo3 = $("#div2").data('parts');

Behind the scenes, jQuery adds a single expando-property to the DOM element of your jQuery selection (an internally generated UUID value), the value of which is a unique key into jQuery.cache, which is basically where all your data is being stored to/retrieved from.

To cleanup, call the .removeData(key) (if no key is passed, all data is removed).

link|flag

Your Answer

Get an OpenID
or

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