ALLOW OTHERS TO BOOKMARK MY SITE MWHEN VIEWING IT

D

d_v_d

I am making a website and I want to make a link which will bookmark my site
on the viewers computer when they click it.
eg. "Click Here to bookmark this site"
 
D

DavidF

Perhaps use the insert code fragment function to insert:

<FORM>
<INPUT TYPE="button" VALUE="Add to Favorites"
onClick='window.external.AddFavorite(location.href, document.title);'>
</FORM>

This adds a button and works with IE.

DavidF
 
Top