A Paypal-style Wait! indicator

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

    A Paypal-style Wait! indicator

    Hi,

    When you login to Paypal, it displays a progress bar type gif and then the
    page loads when the authentication is complete. How to implement this with
    js? How does js script know that it is time to proceed to the next page?

    Thank you,

    Aaron Fude


  • Thomas 'PointedEars' Lahn

    #2
    Re: A Paypal-style Wait! indicator

    Aaron Fude wrote:[color=blue]
    > When you login to Paypal,[/color]

    I do not have a PayPal account and I am not going to create one.
    [color=blue]
    > it displays a progress bar type gif and then the page loads when
    > the authentication is complete. How to implement this with js?[/color]

    With J(ava)Script alone, you cannot. You require DOM methods
    to manipulate document structure and/or rendering.
    [color=blue]
    > How does js script know that it is time to proceed to the next page?[/color]

    IMHO it cannot. Must be using another API or be a Java applet.

    BTW: I cannot find any script that is triggered when the submit button
    at <https://www.paypal.com/cgi-bin/webscr?cmd=_log in-run> is clicked.
    No "onclick" handler for the button and no "onsubmit" handler for the form.


    PointedEars

    Comment

    Working...