I'm on a page, let's say page.php, and I want to reload it. Here is my first code:
$(location).attr("href", "/page.php");
it perfectly works : the page reloads well.
Now, I'd like to go to a specific place into my page, using anchors:
$(location).attr("href", "/page.php#anchor");
When I do this, browser goes directly to the anchor indeed, without reloading the page, wich isn't what I want.
How could I reload the page THEN go to my anchor?