I have a welcome popup on my home page site.
I have this Javascript
<script type="text/javascript">
$(document).ready(function () {
$("#div-welcome").dialog({
width: 'auto',
height: 'auto',
modal: true
});
});
</script>
How can I set a delay of 3 seconds? I tried with setTime function but that didn't work. Maybe I put it in the wrong place. Thank you! AVersa