I have three tabs on one screen: tab_1, tab_2 and tab_3. When the screen loads in the browser, by default the first tab is selected. Here I want the tab name in the browser's URL, so when tab1 is open, the URL should have the name of tab_1 If I navigate to tab_2, the URL should show tab_2. I'm using the Tabs widget here.
Hi Vaishali,
You should have a handler on when a tab changes, like this:
On that handler you can use JavaScript to change the page title, and use the parameter to set the title you want depending on the active tab:
Kind Regards,João
Thanks Joao. Using this JavaScript changes the tab title, but I wanted the tab name to be added to the browser's URL for example URL + #Tab_1. But with your suggestion, I got some ideas and now it is working for me. Thanks again :)