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
When the page loads totally (dom, images, ...)
$(window).load(function(){ // full load });
When DOM elements load (not necessary all images will be loaded)
$(function(){ // DOM Ready });
Then you can trigger any event
$("element").trigger("event");