JavaScript Document (8) Events (8) Strings (3)
Exchange Links About this site Links to us
|
How can I add a page to the favorites/bookmark list
This article has not been rated yet. After reading, feel free to leave comments and rate it.
IE4/5/6 browsers allow to add a bookmark easily:
window.external.addFavorite("url", "title")
 | |  | |
window.external.addFavorite(
"http://www.coders-corner.com",
"Coders Corner");
window.external.addFavorite(location.href, document.title);
| |  | |  | You don't like the formatting? Check out SourceCoder then!
Comments:
|