---
title: "Anchor by hash Example"
description: "Extracted example from ctx.location"
---

# ctx.location

## Anchor by hash

```ts
const hash = ctx.location.hash;
if (hash === '#edit') {
  // Scroll to edit or run logic
}
```
