Browser::reload
Reloads current page.
Syntax
browser.reload(ignoreCache);
Required Arguments
- ignoreCache: true to ignore cache
Example
let browser = mp.browsers.at(0);
if(browser)
{
browser.reload(false);
}
See also
- Functions:
- Properies:
Reloads current page.
browser.reload(ignoreCache);
let browser = mp.browsers.at(0);
if(browser)
{
browser.reload(false);
}