I found the following pattern but i'm not sure how to call this one.
test(var1, {
subTest1: test1Function(function(var2) {
// elided
}),
subTest2: test2Function(html) {
// elided
}
});
I need to call subTest1
, how can I do this? Can anyone help me?
Refferance:Javascript page link(Line-10975)