- Joined
- Aug 13, 2012
- Messages
- 77
- Points
- 0
Hello, I have a request from you, we need to add a popup on my site code, code that should open along pa 24 hours for every unique visitor code it that whenever I give only refresh the page He opens. Can you help me to do it to open only once every 24 hours to every visitor?
The code is
Thank you.
The code is
Code:
< script type = "text/javascript" >
var popurls =new Array()
popurls [ 0 ]= "http://www.example.com"
function openpopup ( popurl ){
var winpops = window . open ( popurl , "" , "width=1024,height=768,toolbar,location,status,scrollbars,menubar,resizable" )
window . focus ()
}
openpopup ( popurls [ Math . floor ( Math . random ()*( popurls . length ))])
</script>