Help on menu-Can i put command to bookmark Us/Set as Homepag

Having problems with DHTML Menu? There is usually somebody here who knows the answer.
Post Reply
acsodeputy
Beginner
Beginner
Posts: 5
Joined: Fri Jan 14, 2005 4:51 am
Contact:

Help on menu-Can i put command to bookmark Us/Set as Homepag

Post by acsodeputy »

Does anyone know what i can do to make it where I can put in a command to bookmark us or set us as homepage? I can't use javascript, or if I can i dunno how. I've tried several times.

thanks
Dustin
http://www.fbc-lc.org
User avatar
fredlongworthhighschool
Mega Advanced
Mega Advanced
Posts: 362
Joined: Fri Jun 27, 2003 11:34 am
Location: Manchester, England.
Contact:

Post by fredlongworthhighschool »

I've just tried this, it seems to work:

1) This is the menu entry:

Code: Select all

aI("text=BOOKMARK US!;url=javascript:addtofav(window.location.href,document.title);");
2) Add this function at the end of your MENU_DATA.JS file, just before the DRAWMENUS();

Code: Select all

function addtofav(linkUrl,linkTitle){
   if (!document.all) {
      alert('Please hit ctrl-d to bookmark this page');
   }
   else external.AddFavorite(linkUrl,linkTitle);
}
Edited 17/1: Missed close curly bracket!
Andy Davis
Web Designer & Smartboard Manager

Fred Longworth High School, Manchester, England.
Post Reply