I have an app in SvelteKit, and I have a navbar that I want to collapse when the user clicks a link the current code that I have is this:
$: if ($navigating) collapseNavbar()
This part only executes (collapses the navbar) when the url changes (from /about to /blog, for example) but not when the anchor changes (ex. from /about#person1 to /about#person2). Is there any way that I can also get it to respond when the anchor link changes?