I can't for the life of me find some code or java script that allows a Bookmark Us, Add To Favorites type button that works in Firefox. Anyone got any idea?
http://tinyurl.com/5rojfd I checked and there is an answer there that will work for you..... (hint, first one)
Ohhhh I get what that google thing is now. Never seen it before, sorry for being ignorant to the guy above. Does that go in the head tags? And what do I place on my actual page for them to click? Sorry for being a complete noob.
Don't bet money on it, because I am no guru of javascript. It looks like that code would actually go right before the link for your bookmarks, in your <body> tag. Then this section of the code will dictate which javascript function to use depending upon your browser. You can change the text "Add to Favorites", "Bookmark Page", and "Add Bookmark" to whatever you want. if (window.external) { document.write('<a href = "javascript:CreateBookmarkLink()");">Add to Favorites</a>'); } else if (window.sidebar) { document.write('<a href = "javascript:CreateBookmarkLink()");">Bookmark Page</a>'); } else if (window.opera && window.print) { document.write('<a href = "javascript:CreateBookmarkLink()");">Add Bookmark</a>'); } Code (markup): P.S. : I looked at someone's source code who was using the script. They announced that it "works fine" for them. So I went to their site and checked their source code out. They have the script where they wanted the link to show.