jQuery plugins use a pattern like this to hide private functions of a plugin:
(function ($) { var a_private_function = function (opts) { opts.onS
As I learned in this answer, the only way to access the private members of a jQuery plugin are to modify the plugin source itself.