Creo en nosotros. Wikipedia.
ShareCode
Permalink: http://www.treeweb.es/u/974/ 01/02/2011

ShareCode

1 2 3 4 window.addEventListener('load', inicializar, false);5 6 7 function inicializar(event) {8  9  var iframe = document.createElement('iframe');10  iframe.addEventListener('load', paginaCargada, false);11  window.document.body.appendChild(iframe);12  13  14  //iframe.setAttribute('src', 'http://www.google.es/');15  16  //window.document.body.innerHTML = 'hola';17 }18 19 20 function paginaCargada(event) {21  window.document.body.innerHTML = analizer(this);22  //if (this instanceof Object) alert('es objeto');23 }24 25 function analizer(object) {26  s = '<div style="padding-left:24px;">';27  for (key in object) {28  s += '<b>' + key + '</b>';29  if (false && object[key] instanceof Object)30  s += analizer(object[key]);31  else 32  s += object[key];33  }34  s += '</div>';35  return s;36 }37 38 


Este ShareCode tiene versiones:
  1. ... (26/06/2011)
  2. ... (24/04/2013)
  3. ... (24/04/2013)
  4. ... (24/04/2013)
  5. ... (24/04/2013)
Enlace
El enlace para compartir es: