27.06.2017, 09:51
You need to bind this event to the object that's opening the widget by using an additional CSS class (myclass):
Code:
$(function() {
$('.myclass').on('vclick', function() {
$("#widget-15 > div").trigger('vclick');
});
});