Skip to content

Title and favicon change event on webview documentation #5754

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion docs/References/webview Tag.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,18 @@ and add 'partition="trusted"' attribute to the webview tag.

### Node.js support in webview

To enable Node.js support in WebView, add the `allownw` attribute to the webview tag. Then Node.js will be turned on, no matter it loads local file or remote site. Use this feature with caution because webview is normally supposed to load untrusted contents.
To enable Node.js support in WebView, add the `allownw` attribute to the webview tag. Then Node.js will be turned on, no matter it loads local file or remote site. Use this feature with caution because webview is normally supposed to load untrusted contents.

### Title and favicon change event
Events for title and favicon change:
* `titlechange` event with `title` string attribute.
* `faviconchange` event with `faviconUrl` string attribute.

##### Example:
Have webview with listener to event e.g.:
```html
webview.addEventListener("titlechange",function(){
console.log(name,"titlechange",arguments)
});
```
Navigate to new page with title. Event is fired.