Reputation: 11763
I am using jQuery tabs but when I click a tab, the hash doesnt appear on the browser URL. Is there a way to get it there? An option I am missing?
Thanks
Upvotes: 1
Views: 1814
Reputation: 1262
You can add a hash using Javascript
document.location.hash = "blahblahblah";
EDIT: Ah, you are using jQuery, I wonder if this answer will help you... changing location.hash with jquery ui tabs
Upvotes: 1