brainfart
08-10-2002, 06:18 PM
I made a book mark code and I would like when someones surfs the website and book marks my site
and then when that person clicks on their Internet Favorites
A Icon of an image will appear on the left of the name of the link
Like now when I look in my favorites it shows all IE Icons
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>New Page 550</title>
<SCRIPT language="JavaScript1.2">
var bookmarkurl = "http://fjvollmer.com"
var bookmarktitle = document.title
function addfav(){
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}
</SCRIPT>
</head>
<body>
<A href="javascript:addfav()" title="Add this to your Favorites!">
Bookmark My Site</A>
</body>
</html>
Gary
and then when that person clicks on their Internet Favorites
A Icon of an image will appear on the left of the name of the link
Like now when I look in my favorites it shows all IE Icons
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>New Page 550</title>
<SCRIPT language="JavaScript1.2">
var bookmarkurl = "http://fjvollmer.com"
var bookmarktitle = document.title
function addfav(){
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}
</SCRIPT>
</head>
<body>
<A href="javascript:addfav()" title="Add this to your Favorites!">
Bookmark My Site</A>
</body>
</html>
Gary