JS Page Load

PHOTO EMBED

Mon Aug 31 2020 02:18:50 GMT+0000 (Coordinated Universal Time)

Saved by @cbarsis #javascript

//The ready event occurs after the HTML document has been loaded
$(document).ready(function () {
    
});

// The onload event occurs later, when all content (e.g. images) also has been loaded.
$(window).load(function() {
    SearchAction(); // used to autoload a grid    
});
content_copyCOPY