I have this url http://localhost:1234/pag1
I want to be like below when I click on the div:
 http://localhost:1234/pag1?fare=standar
and I have an onclick event function:
 <div id="" onclick="addUrl();"> </div>
And the js code:
<script type="text/javascript">
 function addUrl() {
    var url = window.location.href;
    window.location.hash = '?fare=standar';
};
    </script>
This give me this result:
http://localhost:1234/pag1#?fare=standar
And I don't Know how to remove the (#). I only need to add the parameter to the url, without refresh the page.
Suggest me! Thank's.