Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Danny Callcut http://www.stickyrice.co.uk/

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Save to Bookmarks/Favorites

// Cross-browser code for IE/Mozilla

   1  
   2  
   3  var bookmarkurl="Add full URI here"
   4  var bookmarktitle="Add your title here"
   5  
   6  function addbookmark(){
   7  if (document.all)
   8  window.external.AddFavorite(bookmarkurl,bookmarktitle)//IE
   9  window.sidebar.addPanel( bookmarktitle, bookmarkurl, '' );//Moz
  10  }
  11  
  12  //add javascript:addbookmark(); to the HTML to call the function
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS