Setting on home page

  • Thread starter Thread starter Tessa Ford
  • Start date Start date
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?
 
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>
 
Back
Top