Add EVENTS Lifecycle

Sven Minio 2026-05-17 19:59:30 +02:00
commit 6935851c71

25
EVENTS-Lifecycle.md Normal file

@ -0,0 +1,25 @@
* [`ready`](#usage-ready)
---
## <a id="usage-ready"></a>.ready
**Description**
Specify a function to execute when the DOM is fully loaded.
**Parameters**
* `handler` (Function): A function to execute after the DOM is ready.
**Returns**
* (jBase): Current instance.
**Example**
```javascript
$(document).ready(function() {
console.log('DOM is ready!');
});
```