In my HTML page i have got a ul class with two li tags , each one pointing to each table as shown below
<li class='default'><a href="#one">Data</a></li>
<li><a href="#two">Chart</a></li>
<table id="one" class="tab-content-1 table table-striped">
</table>
<table id="two" class="tab-content-1 table table-striped">
</table>
When clicked on the li tag the url looks this way
......./index.html#one
OR
......./index.html#two
So now when user presses F5 (reloads the page )
how to remove #one
or #two
from the URL ??
so that it looks as
......./index.html
http://jsfiddle.net/jq4f69cz/29/
Could you please let me know how to resolve the issue ??
thanks in advance .