Which jQuery function is used to prevent code from running, before the document is finished loading? * 1 point $(document).load() $(document).ready() $(body).onload() $(body).onready() code example
Example: document ready
$( document ).ready(function() {
console.log( "ready!" );
});