Problems on Pop-up window

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Newbie

    Problems on Pop-up window

    Hello, I want to ask something about popup window...

    when a popup window is appear, how can I force users to focus on it?
    P.S. I mean that not just focus once only(not onLoad(this.foc us)..)

    And..

    If users do not close the popup window, they can't move to other IE
    P.S. I want to make a popup window just like a javascript error/confirm message box

    thank you for solving my problems m(_ _)m
  • Reply Via Newsgroup

    #2
    Re: Problems on Pop-up window

    Newbie wrote:
    [color=blue]
    > Hello, I want to ask something about popup window...
    >
    > when a popup window is appear, how can I force users to focus on it?
    > P.S. I mean that not just focus once only(not onLoad(this.foc us)..)
    >
    > And..
    >
    > If users do not close the popup window, they can't move to other IE
    > P.S. I want to make a popup window just like a javascript error/confirm message box
    >
    > thank you for solving my problems m(_ _)m[/color]

    Thankfully - can't be done to prevent folk like you from abusing/taking
    control of someone's system... If you want to have some thing like a
    confirm/error message box, then use one...

    If a user does not want to see something - you shouldn't be forcing it
    upon them - its bad practice - it sounds like you want to hood wink your
    users in to doing something they don't (and/or might never want) to do
    in which case you can rank yourself, and your purpose in life right up
    there with penis enlargers and get rich quick scams.

    Comment

    • Mentors

      #3
      Re: Problems on Pop-up window

      On 5 Apr 2004 20:30:15 -0700, sumclasswork@ya hoo.com.hk (Newbie)
      wrote:
      [color=blue]
      > Hello, I want to ask something about popup window[/color]

      onBlur="self.fo cus()

      Comment

      • Matt Kruse

        #4
        Re: Problems on Pop-up window

        "Reply Via Newsgroup" wrote:[color=blue][color=green]
        > > If users do not close the popup window, they can't move to other IE
        > > P.S. I want to make a popup window just like a javascript error/confirm[/color][/color]
        message box[color=blue]
        > Thankfully - can't be done to prevent folk like you from abusing/taking
        > control of someone's system...[/color]

        Don't be ridiculous. Just because someone wants a popup window that blocks
        doesn't mean they want to abuse someone's system. No more than throwing up
        an alert() message is controlling someone's system.
        [color=blue]
        > If a user does not want to see something - you shouldn't be forcing it
        > upon them[/color]

        Again, that's stupid. Should you never use alert or confirm?

        To the original poster, depending on your environment and browser
        requirements, you could check into IE's ability to show modal dialogs. This
        will make a "popup window" which you can populate yourself, and will stay
        focused until the user takes some action which closes it.

        --
        Matt Kruse
        Javascript Toolbox: http://www.mattkruse.com/javascript/


        Comment

        Working...