Home
Developer Blog
Ajax effects
CSS examples
Freelance jobs
Hot IT Jobs
Hot scripts
Code samples
Web hosting directory
Lotus Notes FAQ
See the new scripts recently added to Dynamic Drive.
Click here
.
Original, practical
CSS codes and examples
such as CSS menus for your site.
Search code samples
Keyword
All Categories
ASP
CSS
Dhtml
Html
Javascript
PHP
Code Samples
ASP
CSS
Dhtml
Html
Javascript
PHP
LOGIN HERE
Username
Password
Signup Now
Forgot Password
Verify Signup
Javascript >> General
how can i add Add to Favorites link in my webpage?
Visitor Ratings (1) :
Description
Try the following code:
Code
Select All
<head> <script language="JavaScript" type="Text/Javascript"> <!-- // Hide script from older browsers // script by http://www.hypergurl.com var urlAddress = "http://www.itechies.net"; var pageName = "Portal for IT Professionals"; function addToFavorites() { if (window.external) { window.external.AddFavorite(urlAddress,pageName) } else { alert("Sorry! Your browser doesn't support this function."); } } // --></script> </head> <BODY> <a href="javascript:addToFavorites()"><font color="#0000FF" face="Arial">Bookmark Page !</font></a> </BODY>
Rate this Resource
0
1
2
3
4
5
6
7
8
9
10