Mahdi Mohebi

Js how to execute code after everything is loaded and parsed

				
					//Jquery
jQuery(window).on('load', function() {  
    //alert();
});

//puer js
window.addEventListener("load", function(){
    //alert();
});
				
			
© 2019 All rights reserved.