logofun
Registered User
کد پاپ آپ زیر رو میشه کاری کرد که یکبار برای آی پی باز بشه ؟
PHP:
document.popup = false;
function openPopup()
{
if (document.popup) return;
window.open('YOUR SITE URL','SHOP','toolbar=no,statusbar=no,location=no,scrollbars=yes,resizable=yes,width=700,height=600');
document.popup = true;
}
document.onclick = openPopup;
if ((window.XMLHttpRequest == undefined) && (ActiveXObject != undefined)) window.onload = openPopup;