JSFiddle - React, Tailwind, and code Playground
HTML
<div class="filter"><a href="http://www.example.com/xchanges/?sfid=422&_sft_category=vodafone">click</a></div>
JavaScript
$('.filter').on( 'click', 'a', function( event ) {
event.preventDefault();
window.open("http://www.example.com/xchanges/","_self");
});