i am building an jQuery plugin, but i want to use objects in the options var, how can i loop this with the jQuery each?
plugin options var
        var defaults = {
            test: 'yes',   //css/classes
            type: {
                minvalue: '100',
                maxvalue: '200',
                name: 'id1'
            },
            type: {
                minvalue: '200',
                maxvalue: '300',
                name: 'id2'
            },
            type: {
                minvalue: '300',
                maxvalue: '400',
                name: 'id3'
            }               
        };
            $.each(defaults, function(key, value) { 
              alert(key + ': ' + value); 
            });  
 
    