ok sorry i'll try to be more clear here (and yes its IE)
I want a link to appear next to every forum name that says [add to favorites]. When you click it I would like it to bring up the favorites dialog for IE so you can add it like thoose links on websites that say "add this page to your favorites".
I have found an add to favorites javascript but it is just a function that only supports one URL. The script is:
Code:
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function addbookmark()
{
bookmarkurl="http://wwwyoursite.com"
bookmarktitle="Site Title"
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}
// End -->
</script>
As you can see only one url can be used. I tried making the URL include $forum[forumid] but it just put nothing for $forum[forumid]. Is there a way to have this add to favorites link for ever forum? or does it require file hacking