![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
17/01/2002, 11:17
|
| | Fecha de Ingreso: abril-2001
Mensajes: 59
Antigüedad: 23 años, 9 meses Puntos: 0 | |
Re: Agregar pàgina a favoritos Hola!
Aqui te paso el script...
Entre el <head> y el </head>
<script LANGUAGE="JavaScript">
function agregar(){
if ((navigator.appName=="Microsoft Internet Explorer") && (parseInt(navigator.appVersion)>=4)) {
var url="http://www.tu-sitio.comr/";
var titulo="Nomnre del Sitio";
window.external.AddFavorite(url,titulo);
}
else {
if(navigator.appName == "Netscape")
alert ("Presione Crtl+D para agregar este sitio en sus Bookmarks");
}
}
</script>
Y entre el <body> y </body>
<input type="button" value="Agregar a favoritos" onClick="javascript:agregar();">
Saludos!
<p><a href="http://www.samue.com.mx">
<img border="0" src="http://www.samue.com.mx/firma.gif" width="320" height="25"></a></p> |