Recently I noticed some websites in which the menu navigation is somewhat like this.
<div id="navigation">
<ul id="nav">
<li><a href="#" class="selected"> HOME </a></li>
<li><a href="#!/about"> ABOUT </a></li>
<li><a href="#!/projects"> PROJECTS </a></li>
<li><a href="#!/contact"> CONTACT </a></li>
</ul>
</div>
I also noticed that this !/ comes inside "single page" sites with animation effects.Example(Please look at navigation in source code)
I tried to use it, but without animation it appears useless.
My question is,
<a href="#about"> ABOUT </a>
navigates to the section within the current page with id='about'. Then what does<a href="#!/about"> ABOUT </a>
mean?- Is that someway related to jQuery?Or it is specific to some jQuery plugin?
- If it is, then can I say that, it is not navigating to anywhere, but just a "hide out"(or fake address) for helping animation?(I'm asking like this because without animation, it appears useless).