addPageBounce

addPageBounce(bounceSeconds: Integer;
              bounceURL:     String): String;

The addPageBounce method of the JadeHTMLClass class returns a string containing page bounce code. The parameters for the addPageBounce method are listed in the following table.

Parameter Description
bounceSeconds Number of seconds to wait before bouncing
bounceURL URL of the Web page to which to bounce if there is no user action within the specified number of seconds

The code fragment in the following example shows the use of the addPageBounce method.

addPageBounce(300, "www.jadeworld.com");

This example returns the following.

<meta http-equiv = "refresh" content = "300;url=www.jadeworld.com">