Hey! Had the same issue last week. Turns out, some browsers force a page reload if the link’s `href` is empty or just `#`.
Try this:
```html
<a href="javascript:void(0)">Click me</a>
```
Or handle it in JS with `preventDefault()`.
Also, Chrome DevTools’ Network tab can help you see what’s triggering the page reload.
Try this:
```html
<a href="javascript:void(0)">Click me</a>
```
Or handle it in JS with `preventDefault()`.
Also, Chrome DevTools’ Network tab can help you see what’s triggering the page reload.
