jQuery : Difference Between jQuery Document.Ready() & $(window).on(‘load’ events

$(document).ready() : This event is triggered when the DOM (Document Object Model) is ready, it means that HTML structure of the page has been parsed and is ready to be manipulated with JavaScript. It occurs before all the external resources (like images and stylesheets) are fully loaded.This event used for tasks that involves DOM manipulation […]

Read More