Is it possible to have a normal link pointing to the current location?
I have currently found 2 solutions, but one of them includes JavaScript and in the other you have to know the absolute path to the page:
<a href="#" onclick="window.location.reload(true);">1</a>
<a href="/foobar/">2</a>
<a href="#">3 (of course not working)</a>
Is there any way of doing this, without using JavaScript or knowing the absolute path?
I have been using:
Have yet to find a case and/or browser where it does not work as intended.
Period means the current path. You can also use
..to refer to the folder above the current path, for instance, if you have this file structure:You can then in
page2.htmlwrite:EDIT:
I’m not sure if the behaviour has changed or if it was always like this, but Chrome (and maybe others) will treat periods as described above as regarding directories, not files. This means that if you are at
http://example.com/foo/bar.htmlyou are really in the directory/foo/and ahrefvalue of.inbar.htmlwill refer to/foo/rather thanbar.htmlThink of it as navigating the file system in a terminal; you can never
cdinto a file 🙂EDIT 2:
It seems like the behaviour of using
href="."is not as predictable anymore, both Firefox and Chrome might have changed how they handle these. I wouldn’t rely entirely on my original answer, but rather try both the empty string and the period in different browsers for your specific use and make sure you get the desired behaviour.