Caution: This version of this document is no longer maintained. For the latest documentation, see http://www.qnx.com/developers/docs.

loadURL()

Requests a given URL to load

Synopsis:

#include <WebFrame.h>

virtual void loadURL( const char* url );

Description:

Loads a given URL.

Arguments:

url
The url to load.

Examples:

The loadURL() method is often used in conjunction with the mainframe() method to load a URL in the current frame.

load_url = perf_snapshot_time();
webView->mainFrame()->loadURL(cur_uri);

See also:

mainframe(), reload()