Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Bookmark button - how to?

Status
Not open for further replies.

Scoobyworld

Technical User
Mar 24, 2002
22
GB
Hi folks

Newbie here and my first post <eek!>

anyway, I'm trying to find the code to allow me to add a &quot;bookmark this page&quot; button - any ideas?

I'm using Dreamweaver 3 and Notepad.

Ta

Neil
 
Hi

Welcome to Tek-tips!

I haven't personally used this, but here you go. By the way, I am not sure that there is a Netscape javascript method to do this as well, but I am sure someone will add to it if there is.

Code:
<script language=&quot;JavaScript&quot; type=&quot;text/javascript&quot;>
<!--
var url=(document.location);
var title=(document.title);
if ((navigator.appName == &quot;Microsoft Internet Explorer&quot;) &&
(parseInt(navigator.appVersion) >= 4)) {
document.write('<a
href=&quot;javascript:window.external.AddFavorite(url,title);&quot;>Add to
Favorites</a>');
}
else {
var msg = &quot;Bookmark: Use CTRL-D&quot;;
if(navigator.appName == &quot;Netscape&quot;);
document.write(msg);
}
//-->
</script>

[fish] Derren
[Mediocre talent - spread really thin]
 
there is an extension at macromdeia claled framebooker that does this.

It bookmarks, works with framesets and with netscape.
 
The Framebooker is no longer available on the Macromedia site. Any other ideas?

Nel
 
<script>
//if the user is using IE 4+
if (document.all)
document.write('<a href=&quot;javascript:addbookmark()&quot;>Bookmark this site!</a>')
</script>

This script only works with IE 4 on up. It only displays the message of the user is using IE, nothing appears if they are using Opera or NN. When in doubt, deny all terms and defnitions.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top