I've got a PHP file with 5 tabs (jquery ui). Tab four and five contain forms. Forms and tab work fine - expect to this: I submit the form (POST method not XHR), then click the right mouse button (Firefox and IE behave identical) and select back and then select tab five in the page by mouse click the entered form data is still available.
I try to build a link, that is more convenient for the user.
<a href="#" onClick='history.back();$("#tabs").tabs("select","4");'>modify</a>
If click on my modify link, it still jumps back to tab one and the form fields in tab five are empty.
I read several posts about jQuery UI tabs and the back button, but all seem not to address my problem.
Where is my fault and is the difference between doing this steps by hand and my link with JS?