No, other than to offer instructions on how to bookmark a page on various browsers. If someone is competent enough to get to your website, they’re most likely able to favorite/bookmark a page.
You could use this javascript, but it’s only good in IE, Firefox, and Opera (meaning it’s not good and there’s no one-size-fits-all solution to your issue, or plugin that will resolve your issue):
<script type="text/javascript">
function CreateBookmarkLink(){
var title = document.title;
var url = document.location.href;
if(window.sidebar){
/* Mozilla Firefox Bookmark */
window.sidebar.addPanel(title, url, "");
}else if(window.external){
/* IE Favorite */
window.external.AddFavorite(url, title);
}else if(window.opera && window.print) {
/* Opera Hotlist */
alert("Press Control + D to bookmark");
return true;
}else{
/* Other */
alert("Press Control + D to bookmark");
}
}
</script>
<a href="javascript:CreateBookmarkLink();">Add to Favorites/Bookmark</a>
Thread Starter
TDR
(@tdr)
hmzz that’s a real bummer.
I guess I’ll have to break up each page in several small pages then.
thnx for the script!