28.05.2019, 12:47
You probably don't need to use object values at all. You can remove default click handler from any element and attach your own.
Code:
$('.selector')
.off('vclick')
.on('vclick', function() { ... });