I am using the following method to redirect to the Item page and do a full page reload too. Works in all browsers, but Safari and IE (as always!). In those two, the current page gets reloaded.
Any recommendations on how to do it differently?
<a href="/items/{{item.$id}}" onclick="location.reload()" class="btn">Item</a>
I have also tried it in JS as follows, but the same problem occurs in Safari and IE
$scope.redirect = function(Item) {
window.location.href = '/items/' + item.$id;
window.location.reload();
}