I want to add the "BOOKMARK US" to my site. How do I do that? I imagine it's simple but I don't know how to do it.
Oboe Girl
http://www.bostonterriergifts.com
I want to add the "BOOKMARK US" to my site. How do I do that? I imagine it's simple but I don't know how to do it.
Oboe Girl
http://www.bostonterriergifts.com
You dont need a script for that one mate :)
Simply add a line of text which says
To bookmark this page pres CTRL+D
Dolding CTRL and tapping the letter D is the standard keyboard shortcut to add a webpage to your list of bookmarks :)
Sorry, I guess I wasn't clear on what I wanted to do. I want to add the opportunity for people to bookmark my web site on the page of my website so they will add my site to their "Favorites."
Oboe Girl
http://www.bostonterriergifts.com
Yes mate...CTRL+D will do it without the need to add clunky and chunky JavaScript. All you need to do is have a little line of text letting people know that they have that option. Many people don't use keyboard shortcuts so they are unaware of this quick way to add bookmarks to their favourites list.
:)
You can cut & paste all the code that’s between the solid lines (not the solid lines) into your html box. These types of code wont work in some browsers but will in most. This one I believe will leave a message to press Ctrl+D if the browser is not compatible.
__________________________________________________ ____________________
<font face="Arial" size="3">
<b>
<script>
.
.
.
</script>
</b>
</font>
<script language="JavaScript">
<!--
// ==============================================
// www.collectors-info.com
// ==============================================
// message to show in non-IE browsers
var txt = "Book mark us to your favorites we would like see you again!"
// do not edit below this line
// ===========================
var url = this.location;
var who = document.title;
var ver = navigator.appName
var num = parseInt(navigator.appVersion)
if ((ver == "Microsoft Internet Explorer")&&(num >= 4)) {
document.write('<A HREF="javascript:window.external.AddFavorite(url,w ho);" ');
document.write('onMouseOver=" window.status=')
document.write("txt; return true ")
document.write('"onMouseOut=" window.status=')
document.write("' '; return true ")
document.write('">'+ txt + '</a>')
______________________
}else{
txt += " (Ctrl+D)"
document.write(txt)
}
//-->
</script>
__________________________________________________ _____________________
Good luck
Chris
Thank you FPRob & Chris. I'm using both ideas on different pages of my site. I really appreciate the help. You're great!!!
Oboe Girl
http://www.bostonterriergifts.com
Coool, both should work fine... you will find that the JavaScript above won't work in broswers where people have JavaScript disabled though OG. People will get an error but most do have it enabled.
Hehehe you can ignore this bit from the top of the above code as it has nothing in it...
Code:<font face="Arial" size="3"> <b> <script> . . . </script> </b> </font>
There are currently 1 users browsing this thread. (0 members and 1 guests)