Ver Mensaje Individual
  #2 (permalink)  
Antiguo 31/05/2002, 11:25
Avatar de DanielRey
DanielRey
Usuario no validado
 
Fecha de Ingreso: enero-2001
Ubicación: Mendoza
Mensajes: 630
Antigüedad: 23 años, 2 meses
Puntos: 1
Re: Link Sin Borde Ni Barras

Hola Draugmith :)

En lugar de:
<a href="pagina.htm" target="_blank">

Poné:
<A Href="javascript:window.open('pagina.htm','no mbre',features)">

Donde features pueden ser:
fullscreen={ yes | no | 1 | 0 }
channelmode={ yes | no | 1 | 0 }
toolbar={ yes | no | 1 | 0 }
location= { yes | no | 1 | 0 }
directories = { yes | no | 1 | 0 }
status={ yes | no | 1 | 0 }
menubar={ yes | no | 1 | 0}
scrollbars={ yes | no | 1 | 0}
resizable={ yes | no | 1 | 0}
width=number
top=number
left=number

Ejemplo:
window.open("sample.htm",null,
"height=200,width=400,status=yes,toolbar=no,m enubar=no,location=no");

Suerte ;)