Перейти к содержанию

Browser::executeCached

Материал из RAGE MP Wiki Archive
Версия от 12:43, 20 ноября 2021; imported>Brzys (Created page with "{{ClientsideJsFunction}} Calls cached JavaScript code inside the browser. Comparing to Browser::execute your evaluated browser code is being cached, so it is not recompili...")
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)

Client-Side
Function

 JavaScript



Calls cached JavaScript code inside the browser. Comparing to Browser::execute your evaluated browser code is being cached, so it is not recompiling the same browser JavaScript code again and again - this approach will give you a better performance.

JavaScript Syntax

Syntax

browser.executeCached(executedCode);


Required Arguments

  • executedCode: JavaScript code to be executed in browser.

See Also