-
-
Notifications
You must be signed in to change notification settings - Fork 0
EVENTS Lifecycle
Sven Minio edited this page Feb 2, 2026
·
1 revision
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
$(document).ready(function() {
console.log('DOM is ready!');
});