09.09.2019, 06:36
You can override link like this. It will work for any other elements as well as it removes default click handler and replaces it with a custom one.
Code:
$('.link1').off('vclick').on('vclick', function() {
window.location = 'http://openrb.com';
});