I want to trigger one event on page load complete using javascript/jquery.
Is there any way to trigger event or call a simple function once page loading fully comple
$(document).ready(function() { // do needed things });
This will trigger once the DOM structure is ready.