$(document).ready(function() { // Runs after the DOM is loaded. alert('DOM fully loaded!'); });
$(function(){ // Runs after the DOM is loaded. alert('DOM fully loaded!'); });
$(selector).methodOrFunction();
$('#menu').on('click', () =>{ $(this).hide(); }); $("body").css("background", "red");
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.min.js" crossorigin="anonymous"></script>