Pause() function?

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

    Pause() function?

    Is there a function that will allow my web page to pause() waiting for
    a keypress and then continue rendering the page? I have a web page in
    PHP that displays some data that I need to see before it calls another
    web page.

    Thanks...

  • Egbert Beuker

    #2
    Re: Pause() function?

    can't you use a frame in the page and cut the page in 2 pieces?
    load part two in the frame after clicking a button..

    "Ralph Freshour" <ralph@primemai l.com> wrote in message
    news:1g19mv4l8q ff792pc287nq6a9 iph831stf@4ax.c om...[color=blue]
    > Is there a function that will allow my web page to pause() waiting for
    > a keypress and then continue rendering the page? I have a web page in
    > PHP that displays some data that I need to see before it calls another
    > web page.
    >
    > Thanks...
    >[/color]


    Comment

    • Ralph Freshour

      #3
      Re: Pause() function?

      This is for debugging purposes only - I don't want to redesign my web
      page(s) to incorporate frames just to see some .php print statements.


      On Sun, 14 Sep 2003 17:29:45 +0200, "Egbert Beuker"
      <nospam@myaccou nt.com> wrote:
      [color=blue]
      >can't you use a frame in the page and cut the page in 2 pieces?
      >load part two in the frame after clicking a button..
      >
      >"Ralph Freshour" <ralph@primemai l.com> wrote in message
      >news:1g19mv4l8 qff792pc287nq6a 9iph831stf@4ax. com...[color=green]
      >> Is there a function that will allow my web page to pause() waiting for
      >> a keypress and then continue rendering the page? I have a web page in
      >> PHP that displays some data that I need to see before it calls another
      >> web page.
      >>
      >> Thanks...
      >>[/color]
      >[/color]

      Comment

      • Evertjan.

        #4
        Re: Pause() function?

        Ralph Freshour wrote on 14 sep 2003 in comp.lang.javas cript:
        [color=blue]
        > This is for debugging purposes only - I don't want to redesign my web
        > page(s) to incorporate frames just to see some .php print statements.
        >
        >[/color]

        Use:

        alert("Waiting for your escape")

        --
        Evertjan.
        The Netherlands.
        (Please change the x'es to dots in my emailaddress)

        Comment

        Working...