I have function wndw open auto close wndow 10second. .
<script type="text/javascript">
function PopWin(urlName) {
var popup = window.open(urlName, "",'width=80,height=100');
setTimeout(function(){
popup.close();
window.location="admin.php"
}
,10000)
}
</script>
<body onload="javascript:PopWin('forum.php">
can you help me to make any windows open. .
I want make more than one windows open. .please share to me. .
<script type="text/javascript">
function PopWin(urlName) {
var popup = window.open(urlName, "",'width=80,height=100');
setTimeout(function(){
popup.close();
window.location="admin.php"
}
,10000)
}
</script>
<body onload="javascript:PopWin('forum.php">
can you help me to make any windows open. .
I want make more than one windows open. .please share to me. .
Comment