|
Post by swfwebmaster on Oct 1, 2007 5:24:27 GMT 1
Need the script to get the "Link Us" button functioning. Pressing the button should allow the user to quickly place the Spartan War Fighters Home Page as a favorite or bookmark. You assistance would be greatly appreciated.
|
|
gendarth
Excellent Contributor
www.spartanwarfighters.net
Posts: 301
|
Post by gendarth on Nov 29, 2007 4:54:11 GMT 1
this depends on what website you want to put it on. for instance if you have another website that you have made by yourself, then i can help you with that. I just need to know from what site you want the link coming from.
|
|
|
Post by swfwebmaster on Dec 2, 2007 9:40:43 GMT 1
script for an interactive button throughout the =SWF= website creating a favorite for the =SWF= homepage
|
|
deadaim88
Great Contributor
www.spartanwarfighters.net
Posts: 162
|
Post by deadaim88 on Aug 25, 2008 15:50:53 GMT 1
Just stick this code anywhere on the page
<SCRIPT LANGUAGE="JavaScript"> var txt = "Bookmark Us!"; var url = "http://www.spartanwarfighters.net"; var who = "Spartan War Fighters";
var ver = navigator.appName; var num = parseInt(navigator.appVersion); if ((ver == "Microsoft Internet Explorer")&&(num >= 4)) { document.write('<A HREF="javascript:window.external.AddFavorite(url,who);" '); document.write('onMouseOver=" window.status='); document.write("txt; return true "); document.write('"onMouseOut=" window.status='); document.write("' '; return true "); document.write('">'+ txt + '</a>'); }else{ txt += " (Ctrl+D)"; document.write(txt); } </script>
|
|
|
Post by swfwebmaster on Aug 30, 2008 11:16:46 GMT 1
Thanks. Upon closer examination, we will have to put it to the test.
|
|