Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. Pop-up Blocker

Pop-up Blocker

Scheduled Pinned Locked Moved Web Development
tutorialquestion
3 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Offline
    M Offline
    Monin D
    wrote on last edited by
    #1

    How to detect: is pop-up blocker on? For example I want to open a new window, but if pop-up blocker has blocked it, then I want to open it in the same window, or say the user to turn off pop-up blocker? is it possible?

    J 1 Reply Last reply
    0
    • M Monin D

      How to detect: is pop-up blocker on? For example I want to open a new window, but if pop-up blocker has blocked it, then I want to open it in the same window, or say the user to turn off pop-up blocker? is it possible?

      J Offline
      J Offline
      JUNEYT
      wrote on last edited by
      #2

      Hi! It is very simple to detect popup blocer. Examine my code below please. function detectPopupBlocker() { var myTest = window.open("about:blank","","directories=no,height=100,width=100,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,top=0,location=no"); if (!myTest) { alert("Please allow pop ups for this web site!"); } else { myTest.close(); return; } }

      M 1 Reply Last reply
      0
      • J JUNEYT

        Hi! It is very simple to detect popup blocer. Examine my code below please. function detectPopupBlocker() { var myTest = window.open("about:blank","","directories=no,height=100,width=100,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,top=0,location=no"); if (!myTest) { alert("Please allow pop ups for this web site!"); } else { myTest.close(); return; } }

        M Offline
        M Offline
        Monin D
        wrote on last edited by
        #3

        Thank you, really very simple...

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups