Jan 3, 2005 #1 TheConeHead Programmer Joined Aug 14, 2002 Messages 2,106 Location US How do I make an "Add to bookmarks" button that will work in netscape?
Jan 3, 2005 #2 ChrisHirst IS-IT--Management Joined Nov 23, 2001 Messages 8,049 Location GB search the javascript forum216 probably lots of examples there Chris. Indifference will be the downfall of mankind, but who cares? http://www.candsdesign.co.uk A website that proves the cobblers kids adage. http://www.cram-system.com Nightclub counting systems So long, and thanks for all the fish. Upvote 0 Downvote
search the javascript forum216 probably lots of examples there Chris. Indifference will be the downfall of mankind, but who cares? http://www.candsdesign.co.uk A website that proves the cobblers kids adage. http://www.cram-system.com Nightclub counting systems So long, and thanks for all the fish.
Jan 3, 2005 1 #3 Rommedahl Technical User Joined Oct 27, 2004 Messages 3 Location DK Try this ConeHead... <SCRIPT language="Javascript"> browser_name = navigator.appName; browser_version = parseFloat(navigator.appVersion); if (browser_name == "Netscape" && browser_version >= 3.0) { document.write("<BLINK><font size=+0 color=white face=tahoma>To Bookmark This Page! Please hit \"Ctrl-d\"</font></BLINK>"); } else { document.write("<form>"); document.write("<input type=\"button\" value=\"Click here to add to your Favorites!\" onclick=\"window.external.AddFavorite(top.location.href,top.document.title)\">"); document.write("</form>"); } </SCRIPT> Upvote 0 Downvote
Try this ConeHead... <SCRIPT language="Javascript"> browser_name = navigator.appName; browser_version = parseFloat(navigator.appVersion); if (browser_name == "Netscape" && browser_version >= 3.0) { document.write("<BLINK><font size=+0 color=white face=tahoma>To Bookmark This Page! Please hit \"Ctrl-d\"</font></BLINK>"); } else { document.write("<form>"); document.write("<input type=\"button\" value=\"Click here to add to your Favorites!\" onclick=\"window.external.AddFavorite(top.location.href,top.document.title)\">"); document.write("</form>"); } </SCRIPT>