scrollToTop
The scrollToTop function smoothly scrolls the page to the top.
Syntax
typescript
scrollToTop(options?: ScrollToOptions): void;Parameters
| Name | Type | Description |
|---|---|---|
options | ScrollToOptions | (optional) Scrolling options |
Returns
| Name | Type | Description |
|---|---|---|
| – | void | Does not return a value |
Examples
typescript
scrollToTop();
// Scrolls to the top of the page
scrollToTop({ behavior: "smooth" });
// Smoothly scrolls to the topNotes
- Useful for quick navigation on long pages.
