I have this url:
http://www.example.com/xchanges/?sfid=422&_sft_category=vodafone
And It should become:
http://www.example.com/xchanges/
On a click I am trying:
$('.filter').on( 'click', 'a', function( event ) {
  event.preventDefault();
  window.location.hash = "http://www.example.com/xchanges/";
});
But it doesn't change the URL
 
     
     
    