I\'m using jquery tabs on a web page and when the page is refreshed it loses what ever tab I had been on and goes back to the first tab.
Has anyone come across this
When web pages refresh, they reload their state from the server, by requesting the page again.
Either the webserver needs to remember the state and supply the file differently than the default, or you may be able to use cookies or the hash-component of the URL and some jQuery to store the state, read it on load and restore it.
See the jquery.cookie plugin or SWFaddress, learn about manipulating hash values yourself or the jQuery History plugin.
The hash method has a particular attraction as it replicates changes of URL, so copy/paste of the URL still works, as do bookmarks.