Scott Yu - builds stuff
Scott Yu - builds stuff

Reputation: 11763

jQuery tabs (how come clicking tab doesnt show hash on URL?)

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

Answers (1)

Jacob
Jacob

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

Related Questions