05.05.2020, 00:46
I will leave you this JS code which will help you if you want to open a new tab both on a computer and on a mobile device, since the above code was only allowing me to open a new tab but only on computers. I hope it works for you.
Code:
$(function(){
$('.pestaña_publimetro').on('click', function() {
window.open('https://www.publimetro.co/co/');
})
});