I need for delaying opening of a popup. This is the code of my popup:
<script type="text/javascript">
var pmauid = 'Numbers';
var pmawid = 'Numbers';
var fq = '0';
</script>
<script type="text/javascript" src="http://mypopnetwork.com"></script>
So, I need for apply a delay in this part of code:
<script type="text/javascript" src="http://mypopnetwork.com"></script>
If I editing in this way, nothing happened:
<script type="text/javascript" window.setTimeout() src="http://mypopnetwork.com"></script>
Maybe I wrong syntax. This popup is normally open after clicking on an alertbox.
I tried also in this way:
setTimeout(function () {
<script type="text/javascript" src="http://mypopnetwork.com"></script>;
}, 5000);