GTA V NativesbrowserBrowser::reloadOn this pageBrowser::reloadReloads current page. Syntax ```js browser.reload(ignoreCache); ``` Required Arguments ignoreCache: true to ignore cache Example ```js let browser = mp.browsers.at(0); if(browser) { browser.reload(false); } ``` See also