From your posting it seems that the JS file inclusion that you've done from another website is triggering a popup in your page and you want to avoid that for at least 30 seconds, so that the users can view your page.
The problem here is the way you've included the JS file from the website. If that JS file has any instruction which is outside any function the file has then those will be executed as and when the JS script engine encounters those lines.
The solution I propose is adding this script element at run-time (dynamically) using JS script from your page after 30 seconds so that the user will be able to view your page
You can avoid your script inclusion line
Code:
<script type="text/javascript" language="javascript" src="http://prompt.zangocash.com/pog/0228a9e9b3.js"></script>
And add the following code in your <head> section
Code:
<script type="text/javascript">
window.onload = function(){
setTimeout(function(){
var newScript = document.createElement('script');
newScript.type = 'text/javascript';
newScript.src = 'http://prompt.zangocash.com/pog/0228a9e9b3.js';
document.getElementsByTagName("head")[0].appendChild(newScript);
},30000);
}
</script>
The above section will include the JS file from the website you've mentioned dynamically after 30 seconds the window loads your page.
It is always better if you post a link to your page so that forum users can have a look at it and experience the problem(s).
Bookmarks