open DIV after the website draws.
I want a window to open a second or so after the main website completes opening.
I am able to do the below BUT can only seem to get it to work from a button click
I want this to happen automattical ONCE the window is done rendering
Thoughts?
-
$( document ).ready(function() {
$('#PrintService').click(function(event) {
$('#divLayerContainerPrint').delay(800).show('slow', function() {
// Animation complete.
});
});
});
-
-
<div id="divLayerContainerPrint" class="divLayerContainerPrint hideContainerHeightPrint" style="display: none;">
<div id="divLayerHolderPrint" class="divLayerHolderPrint">
<div id="divLayerContainerHolderPrint" style="position: relative">
</div>
</div>
</div>