El código:
Using html4strict Syntax Highlighting
- <html>
- <body>
- <script>
- function popitup2() {
- newwindow2=window.open('','name','height=200,width=150');
- var tmp = newwindow2.document;
- tmp.write('<html><head><title>popup</title>');
- tmp.write('<link rel="stylesheet" href="js.css">');
- tmp.write('</head><body><p>this is once again a popup.</p>');
- tmp.write('<p><a href="javascript:alert(self.location.href)">view location</a>.</p>');
- tmp.write('<p><a href="javascript:self.close()">close</a> the popup.</p>');
- tmp.write('</body></html>');
- tmp.close();
- }
- popitup2();
- </script>
- </body>
- </html>
Coloreado en 0.002 segundos, usando GeSHi 1.0.8.4
¿ Alguien conoce algún similar en HTML y JavaScript que no los bloquee todos los navegadores ?