Delay jQuery Slider Execution

Question:

I wonder is there a way to delay the execution of the Amazing Slider? I would like to display the slider 5 seconds after the page is loaded.

Answer:

The application generates a file intslider-1.js inside the subfolder sliderengine. You can open the js file with your text editor, and wrap the call amazingslider with a setTimeout function.

The demo code is as following:

setTimeout(function() {
    jQuery(“#amazingslider-1”).amazingslider({
        sliderid:1,
        jsfolder:jsFolder,
        …..
        textformat: {
        }
    });
}, 5000);