Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

WebView.DOMContentLoaded Event

Definition

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Occurs when the WebView has finished parsing the current HTML content.

// Register
event_token DOMContentLoaded(TypedEventHandler<WebView, WebViewDOMContentLoadedEventArgs const&> const& handler) const;

// Revoke with event_token
void DOMContentLoaded(event_token const* cookie) const;

// Revoke with event_revoker
WebView::DOMContentLoaded_revoker DOMContentLoaded(auto_revoke_t, TypedEventHandler<WebView, WebViewDOMContentLoadedEventArgs const&> const& handler) const;
public event TypedEventHandler<WebView,WebViewDOMContentLoadedEventArgs> DOMContentLoaded;
function onDOMContentLoaded(eventArgs) { /* Your code */ }
webView.addEventListener("domcontentloaded", onDOMContentLoaded);
webView.removeEventListener("domcontentloaded", onDOMContentLoaded);
- or -
webView.ondomcontentloaded = onDOMContentLoaded;
Public Custom Event DOMContentLoaded As TypedEventHandler(Of WebView, WebViewDOMContentLoadedEventArgs) 
<WebView DOMContentLoaded="eventhandler"/>

Event Type

Remarks

WebView navigation events occur in the following order:

Similar events occur in the same order for each iframe in the WebView content:

Applies to


Feedback

Was this page helpful?