Skip to content

ready

Official

Executes a function when the DOM is ready.

Example:

ready(() => {
console.log('DOM is ready');
});
**Signature:**
```ts
function ready(fn: () => unknown): void

Parameters:

ParameterTypeDescription
fn() => unknownThe function to execute when the DOM is ready.

Returns: void

Example:

ready(() => {
console.log('DOM is ready');
});