Use this script for an addbookmark that works with both IE and Firefox.
See it in action @
http://www.teenieupdate.com
Between <head> tags:
Code:
<script>
function addBookmark(title,url) {
//alert('adding ' + title + ', ' + url);
if (window.sidebar) {
window.sidebar.addPanel(title, url,"");
} else if( document.all ) {
window.external.AddFavorite( url, title);
} else if( window.opera && window.print ) {
return true;
}
}
</script>
At Location:
Code:
javascript:void(addBookmark('Site title here', window.location.href));
Hope some of you find this useful
