La propiedad SVG Window.isSecureContext
Sintaxis:
var isSecure = window.isSecureContext
Valor de retorno: esta propiedad
Ejemplo 1: En este ejemplo, usaremos el evento onclick.
HTML
<!DOCTYPE html> <html> <body> <center> <h1>GeeksforGeeks</h1> <button onclick="get()"> Check </button> <br><br> <div id="g"></div> <svg viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"> <script type="text/javascript"> function get() { var g = document.getElementById("g"); g.innerHTML = " Is it secure? : " + window.isSecureContext; } </script> </svg> </center> </body> </html>
Producción:
Ejemplo 2: En este ejemplo, usaremos el evento onmouseover.
HTML
<!DOCTYPE html> <html> <body> <center> <h1>GeeksforGeeks</h1> <button onmouseover="get()"> Check </button> <br><br> <div id="g"></div> <svg viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"> <script type="text/javascript"> function get() { var g = document.getElementById("g"); g.innerHTML = " Is it secure? : " + window.isSecureContext; } </script> </svg> </center> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- Borde
- Firefox
- Safari
- Ópera