Syntax
| browser.ID.navigate(URL, Frame, NoHistory, NoCache) |
Parameters
| STRING | URL | URL to open in the web browser object.
| | STRING | Frame | (Optional) Name of the frame.
| | BOOL | NoHistory | Set to true to avoid the web page to be added in the navigation history.
| | BOOL | NoCache | Set to true to avoid the web page to be stored in the cache. |
Return value
No value is returned.
Description
| Navigate to a new HTML document. |
MioScript Sample Code
browser.&br.navigate("http://www.mioplanet.com"); |
|