Try the following code
$('.list-group-item a').click(function (event) {
event.preventDefault();
var url = $(this).attr('href');
window.history.replaceState("object or string", "Title",url); // this will change your url
});
For More details http://spoiledmilk.com/blog/html5-changing-the-browser-url-without-refreshing-page/