I am using jquery tool for tab Ui,
Now I want to keep tab selected on page reload. Is there any way to do that? below is my code
$(function() { // se
The easiest way to survive between page refresh is to store the selected tab id in session or through any server-side script. Only methods to store data on client side are: Cookies or localStorage.
Refer to thread: Store Javascript variable client side