Upload files to "/"

This commit is contained in:
Sven Minio 2026-05-17 12:39:25 +02:00
commit 1fa6d558c7
149 changed files with 27987 additions and 0 deletions

25
wiki/EVENTS-Lifecycle.md Normal file
View 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!');
});
```