I am refreshing my page using jQuery:
location.reload();
This is working great but I want to refresh the same page by passing a parameter t
Concision counts: I prefer window.location = "?single"; or window.location += "?single";
window.location = "?single";
window.location += "?single";