OnClientBrowserNavigate: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Undo revision 50640 by Joker (talk))
mNo edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client event}}
{{Client event}}
{{Needs Example}}
{{New feature/item|3.0150|1.5||
{{New feature/item|3.0150|1.5||
The event is executed when the browser loads a new page. Do not use [[loadBrowserURL]] in the attached function.
The event is executed when the browser loads a new page. Do not use [[loadBrowserURL]] in the attached function.
Line 17: Line 18:


==Example==  
==Example==  
{{Example}}
TODO


== Issues ==
== Issues ==

Revision as of 13:50, 7 May 2017

Accessories-text-editor.png Script Example Missing Event OnClientBrowserNavigate needs a script example, help out by writing one.

Before submitting check out Editing Guidelines Script Examples.

The event is executed when the browser loads a new page. Do not use loadBrowserURL in the attached function.

Parameters

string targetURL, bool isBlocked, bool isMainFrame
  • targetURL: The page the browser loaded
  • isBlocked: If the browser was created with isLocal set to true, and the browser tried to load a remote page, this would be set to true (and vice-versa)
  • isMainFrame: Whether the entire page (main frame) was loaded or an <iframe> inside the page was loaded

Source

The browser element

Example

TODO

Issues

Issue ID Description
#9173 onClientBrowserNavigate is triggered for <iframe> elements

See Also