Forum Discussion
nibo
11 years agoMentor
Maybe you could try using jQuery. Maybe something like this (didn't test it):
<@liaAddScript>
(function($) {
$(document).ready(function() {
$( "[your_container_selector]" ).on( "click", "[your_link_selector]", function() {
e.preventDefault();
var url = $(this).attr('href');
window.open(url, '_blank');
});
});
})(LITHIUM.jQuery);
</@liaAddScript>I think you'll have to use delegated events cause some of the links are generated later on (e.g. the suggestions when tipping).
Hope this helps yot further.
Best,
Nikolay