Setting on home page

T

Tessa Ford

Does anyone know how to put a script or something on the
home page of a FP site that can say 'click here to make
this your home page' and it does it for the visitor?
 
S

Steve Easton

This one will detect the browser type
and then add to favorites.

<SCRIPT>
<!--
if ((navigator.appVersion.indexOf("MSIE") > 0)
&& (parseInt(navigator.appVersion) >= 4)) {
document.write("<U>
<SPAN STYLE='color:blue;cursor:hand;'
onclick='window.external.
AddFavorite(location.href, document.title);'>
Add this page to your favorites</SPAN>
</U>");
}
//-->
</SCRIPT>
 
Top