I have a href
which pointed to #
<a href="#" id="bla" >Bla<a>
I have onclick function which displaying popup on click on that a href.
function doingClick()
{
//display popup
return false;
}
But after click symbol #
every time added to the url in browser.
So for example if url was like that before I click on my link http://mywebsite.com
But after click on a href
the url looking like that: http://mywebsite.com#
Is there any way to avoid such behavior?