JavaScript - Agregar a favoritos

 
Vista:

Agregar a favoritos

Publicado por Ane (3 intervenciones) el 11/03/2003 10:40:27
¿Cómo se puede agregar a favoritos una página clickando en una imagen?
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

RE:Agregar a favoritos

Publicado por Kesar (198 intervenciones) el 14/03/2003 21:06:51
<SCRIPT>
<!--
if ((navigator.appVersion.indexOf("MSIE") > 0) && (parseInt(navigator.appVersion) >= 4))
{
var sText = "<U><SPAN STYLE='color:blue;cursor:hand;'";
sText += "onclick='window.external.AddFavorite(location.href,";
sText += "document.title);'>Añadir a favoritos</SPAN></U>";
document.write(sText);
}
//-->
</SCRIPT>
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar