I am new to JavaScript and I have the following doubt.
Into a page I find this link to go back to the previous page:
<a href="javascript:history.back()"><span class="glyphicon glyphicon-menu-left"></span> Indietro</a>
My doubt is:
it works fine (come back to the previous page) but it seems to me that the javascript:history.back()
does not generate an HTTP request because:
If I open the Network tab inside FireBug I can't see no generated request here.
I am working on a Spring MVC application and when I click here there is no controller methods that handle a request.
Is it true or am I missing something? How does it work? What am I missing?