PDA

View Full Version : Bookmark this page: How??


DanIAm
Fri 27th Sep '02, 1:55am
How can I create a 'bookmark this page' link to be displayed on the top of my board?

Nightfire
Tue 1st Oct '02, 8:52pm
<script>
var bookmarkurl="ForumsURLHere"
var bookmarktitle="Forums title here"

function addbookmark(){
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarkti tle)
}

</script>

<a href="javascript:addbookmark()">Book mark these forums</a>

DanIAm
Wed 2nd Oct '02, 1:56am
Thank you very much...