Here’s a simple Javascript-based bookmarking script for your site. It automatically populates the page name and URL so you don’t have to. Put this in the <HEAD>
:
<script language="javascript" type="text/javascript">
function addToFav() {
if(window.sidebar){
window.sidebar.addPanel(document.title, this.location,"");
}else{
window.external.AddFavorite(this.location,document.title);
}
}
</script>
Then, you can add a link in your <BODY>
:
Comments are closed.