# `` tag Use the `webview` tag to embed 'guest' content (such as web pages) in your Electron app. The guest content is contained within the `webview` container; an embedder page within your app controls how the guest content is laid out and rendered. Different from the `iframe`, the `webview` runs in a separate process than your app; it doesn't have the same permissions as your web page and all interactions between your app and embedded content will be asynchronous. This keeps your app safe from the embedded content. ## Example To embed a web page in your app, add the `webview` tag to your app's embedder page (this is the app page that will display the guest content). In its simplest form, the `webview` tag includes the `src` of the web page and css styles that control the appearance of the `webview` container: ```html ``` If you want to control the guest content in any way, you can write JavaScript that listens for `webview` events and responds to those events using the `webview` methods. Here's sample code with two event listeners: one that listens for the web page to start loading, the other for the web page to stop loading, and displays a "loading..." message during the load time: ```html ``` ## Tag attributes ### src ```html ``` Returns the visible URL. Writing to this attribute initiates top-level navigation. Assigning `src` its own value will reload the current page. The `src` attribute can also accept data URLs, such as `data:text/plain,Hello, world!`. ### autosize ```html ``` If "on", the `webview` container will automatically resize within the bounds specified by the attributes `minwidth`, `minheight`, `maxwidth`, and `maxheight`. These contraints do not impact the `webview` UNLESS `autosize` is enabled. When `autosize` is enabled, the `webview` container size cannot be less than the minimum values or greater than the maximum. ### nodeintegration ```html ``` If "on", the guest page in `webview` will have node integration and can use node APIs like `require` and `process` to access low level system resources. ### plugins ```html ``` If "on", the guest page in `webview` will be able to use browser plugins. ### preload ```html ``` Specifies a script that will be loaded before other scripts run in the guest page. The protocol of script's URL must be either `file:` or `asar:`, because it will be loaded by `require` in guest page under the hood. When the guest page doesn't have node integration this script will still have access to all Node APIs, but global objects injected by Node will be deleted after this script has done execution. ### httpreferrer ```html ``` Sets the referrer URL for the guest page. ### useragent ```html ``` Sets the user agent for the guest page before the page is navigated to. Once the page is loaded, use the `setUserAgent` method to change the user agent. ### disablewebsecurity ```html ``` If "on", the guest page will have web security disabled. ## Methods The webview element must be loaded before using the methods. **Example** ```javascript webview.addEventListener("dom-ready", function() { webview.openDevTools(); }); ``` ### ``.getUrl() Returns URL of guest page. ### ``.getTitle() Returns the title of guest page. ### ``.isLoading() Returns whether guest page is still loading resources. ### ``.isWaitingForResponse() Returns whether guest page is waiting for a first-response for the main resource of the page. ### ``.stop() Stops any pending navigation. ### ``.reload() Reloads guest page. ### ``.reloadIgnoringCache() Reloads guest page and ignores cache. ### ``.canGoBack() Returns whether guest page can go back. ### ``.canGoForward() Returns whether guest page can go forward. ### ``.canGoToOffset(offset) * `offset` Integer Returns whether guest page can go to `offset`. ### ``.clearHistory() Clears the navigation history. ### ``.goBack() Makes guest page go back. ### ``.goForward() Makes guest page go forward. ### ``.goToIndex(index) * `index` Integer Navigates to the specified absolute index. ### ``.goToOffset(offset) * `offset` Integer Navigates to the specified offset from the "current entry". ### ``.isCrashed() Whether the renderer process has crashed. ### ``.setUserAgent(userAgent) * `userAgent` String Overrides the user agent for guest page. ### ``.getUserAgent() Returns a `String` represents the user agent for guest page. ### ``.insertCSS(css) * `css` String Injects CSS into guest page. ### ``.executeJavaScript(code, userGesture) * `code` String * `userGesture` Boolean - Default false Evaluates `code` in page. If `userGesture` is set will create user gesture context, HTML api like `requestFullScreen` which require user action can take advantage of this option for automation. ### ``.openDevTools() Opens a devtools window for guest page. ### ``.closeDevTools() Closes the devtools window of guest page. ### ``.isDevToolsOpened() Returns whether guest page has a devtools window attached. ### ``.inspectElement(x, y) * `x` Integer * `y` Integer Starts inspecting element at position (`x`, `y`) of guest page. ### ``.inspectServiceWorker() Opens the devtools for the service worker context present in the guest page. ### ``.setAudioMuted(muted) + `muted` Boolean Set guest page muted. ### ``.isAudioMuted() Returns whether guest page has been muted. ### ``.undo() Executes editing command `undo` in page. ### ``.redo() Executes editing command `redo` in page. ### ``.cut() Executes editing command `cut` in page. ### ``.copy() Executes editing command `copy` in page. ### ``.paste() Executes editing command `paste` in page. ### ``.pasteAndMatchStyle() Executes editing command `pasteAndMatchStyle` in page. ### ``.delete() Executes editing command `delete` in page. ### ``.selectAll() Executes editing command `selectAll` in page. ### ``.unselect() Executes editing command `unselect` in page. ### ``.replace(text) * `text` String Executes editing command `replace` in page. ### ``.replaceMisspelling(text) * `text` String Executes editing command `replaceMisspelling` in page. ### ``.print([options]) Prints webview's web page. Same with `webContents.print([options])`. ### ``.printToPDF(options, callback) Prints webview's web page as PDF, Same with `webContents.printToPDF(options, callback)` ### ``.send(channel[, args...]) * `channel` String Send `args..` to guest page via `channel` in asynchronous message, the guest page can handle it by listening to the `channel` event of `ipc` module. See [WebContents.send](browser-window.md#webcontentssendchannel-args) for examples. ## DOM events ### load-commit * `url` String * `isMainFrame` Boolean Fired when a load has committed. This includes navigation within the current document as well as subframe document-level loads, but does not include asynchronous resource loads. ### did-finish-load Fired when the navigation is done, i.e. the spinner of the tab will stop spinning, and the `onload` event was dispatched. ### did-fail-load * `errorCode` Integer * `errorDescription` String This event is like `did-finish-load`, but fired when the load failed or was cancelled, e.g. `window.stop()` is invoked. ### did-frame-finish-load * `isMainFrame` Boolean Fired when a frame has done navigation. ### did-start-loading Corresponds to the points in time when the spinner of the tab starts spinning. ### did-stop-loading Corresponds to the points in time when the spinner of the tab stops spinning. ### did-get-response-details * `status` Boolean * `newUrl` String * `originalUrl` String * `httpResponseCode` Integer * `requestMethod` String * `referrer` String * `headers` Object Fired when details regarding a requested resource is available. `status` indicates socket connection to download the resource. ### did-get-redirect-request * `oldUrl` String * `newUrl` String * `isMainFrame` Boolean Fired when a redirect was received while requesting a resource. ### dom-ready Fired when document in the given frame is loaded. ### page-title-set * `title` String * `explicitSet` Boolean Fired when page title is set during navigation. `explicitSet` is false when title is synthesised from file url. ### page-favicon-updated * `favicons` Array - Array of Urls Fired when page receives favicon urls. ### enter-html-full-screen Fired when page enters fullscreen triggered by html api. ### leave-html-full-screen Fired when page leaves fullscreen triggered by html api. ### console-message * `level` Integer * `message` String * `line` Integer * `sourceId` String Fired when the guest window logs a console message. The following example code forwards all log messages to the embedder's console without regard for log level or other properties. ```javascript webview.addEventListener('console-message', function(e) { console.log('Guest page logged a message:', e.message); }); ``` ### new-window * `url` String * `frameName` String * `disposition` String - Can be `default`, `foreground-tab`, `background-tab`, `new-window` and `other` Fired when the guest page attempts to open a new browser window. The following example code opens the new url in system's default browser. ```javascript webview.addEventListener('new-window', function(e) { require('shell').openExternal(e.url); }); ``` ### close Fired when the guest page attempts to close itself. The following example code navigates the `webview` to `about:blank` when the guest attempts to close itself. ```javascript webview.addEventListener('close', function() { webview.src = 'about:blank'; }); ``` ### ipc-message * `channel` String * `args` Array Fired when the guest page has sent an asynchronous message to embedder page. With `sendToHost` method and `ipc-message` event you can easily communicate between guest page and embedder page: ```javascript // In embedder page. webview.addEventListener('ipc-message', function(event) { console.log(event.channel); // Prints "pong" }); webview.send('ping'); ``` ```javascript // In guest page. var ipc = require('ipc'); ipc.on('ping', function() { ipc.sendToHost('pong'); }); ``` ### crashed Fired when the renderer process is crashed. ### gpu-crashed Fired when the gpu process is crashed. ### plugin-crashed * `name` String * `version` String Fired when a plugin process is crashed. ### destroyed Fired when the WebContents is destroyed.