Window › ready
Official
Executes a function when the DOM is ready.
Signature:
ready(fn: () => unknown): void
Parameters:
| Parameter | Type | Description |
| fn | () => unknown | The function to execute when the DOM is ready. |
Returns: void
Example:
console.log('DOM is ready');