I have a tab structure which goes like this:
<div id="tabs">
    <ul class="tabnames">
        <li><a href="home.html" id="reportTabUrl">Reports</a></li>
        <li><a href="about.html">Create Dashboard</a></li>
        <li><a href="services.html">Manage Dashboard</a></li>
        <li><a href="product.html">Manage Widget</a></li>
        <li><a href="contact.html">Permissions</a></li>
    </ul>
</ul>
I want to know if there's a way in which the browser can reflect the URL of the active tab, i.e. www.sampleurl.com/home.html instead of www.sampleurl.com when I click on <li><a href="home.html" id="reportTabUrl">Reports</a></li>
 
    