(function($) {
$.fn.my_custom_jquery_plugin = function() {
var custom_settings = {
first: 'First',
second: 'Second'
}
function a_custom_function() {
}
}
})(jQuery);
I would like to know how I can access the settings variable and a_custom_function function from outside the plugin?