Advertisement
eduensarceno

anothershit

Jun 27th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ;(function(global,$)
  2. {
  3. "use-strict"
  4. var frame = $.createElement('iframe')
  5. // propiedades del iframe, se han eliminado los no soportados en HTML5
  6. // (IFrame properties)[https://www.w3schools.com/tags/tag_iframe.asp]
  7. frame.width = "100%"
  8. frame.height = "530px"
  9. frame.style.border = "none" // equivalente a frameBorder = "0"
  10.  
  11. if (global.navigator.onLine) {
  12.     /* google no permite utilizar su sitio en iframes por
  13.        (X-Frame-options)[https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options]
  14.     */
  15.     frame.src = "https://google.com.co" // no funciona ver enlace de arriba
  16. } else {
  17.     frame.src = "sinconexion.html"  // valido ya que pertenece al mismo sitio
  18. }
  19.  
  20. $.body.appendChild(frame)
  21.  
  22. }(window, document))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement