Print Page | Close Window

Agregar a favoritos

Printed From: Vida Una
Category: Programación
Forum Name: Códigos JavaScript
Forum Description: Los mejores códigos en Java y Javascript de ayuda para los webmaster. Los mejores ejemplos y trucos útiles de la aplicación de JavaScript .
URL: https://www.vidauna.com/forum_posts.asp?TID=203
Printed Date: 28 Abril 2024 at 12:38am


Topic: Agregar a favoritos
Posted By: Programador
Subject: Agregar a favoritos
Date Posted: 09 Mayo 2009 at 4:14pm
Agrega un enlace del sitio a los favoritos del navegador. Adaptado para que funcione con IE y NS:
 
<!-- PRIMER PASO: Colocar dentro del tag HEAD -->
<script LANGUAGE="JavaScript">
function agregar(){
if ((navigator.appName=="Microsoft Internet Explorer") && (parseInt(navigator.appVersion)>=4)) {
var url=" http://www.tu-sitio.comr/ - 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>
<!-- SEGUNDO PASO: Colocar dentro del tag BODY -->
<input type="button" value="Agregar a favoritos" onClick="javascript:agregar();">



Print Page | Close Window