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>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top