Lo que deseo es q por ningun motivo se sepa la ruta de una nueva venta a la que quiero llevar a mis visitantes..
Ej: tengo la siguiente ruta ... www.paginaweb.com/paginas/noticias.html
y lo que deseo es q al abrirse la ventana oculte esa ruta y en cambio no muestre nada o que cambie la url por otra inexistente ej: www.paginaweb.com/paginas/???xxx&&777
Como lo puedo hacer??
Ya probe haciendolo con este codigo... Pero resulta que en firefox y en google chrome si muestra la direccion o URL, mientras que en IE y en safari si la oculta, es decir no muestra la barra de la URL.
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <script language="JavaScript"> function openNewWindow(url,h,w){ var l = (screen.width - w) / 2; var t = (screen.height - h) / 2; win = window.open(url, null, "top=" + t + ",left=" + l + ", width=" + w + ", height=" + h + ",toolbar=no,scrollbars=3,location=no,statusbar=no ,menubar=no,resizable=no,copyhistory=no,directorie s=no"); if (parseInt(navigator.appVersion) >= 4) win.window.focus(); } </script> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin function popUp(URL) { day = new Date(); id = day.getTime(); eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=350,height=400,left = 465,top = 200');"); } // End --> </script> </head> <body> <div style="height:24px;"><a class="read" href="javascript:openNewWindow('test2html.html',200,250) ">Ingresar XD</a></div> </body> </html>