javascript.ie's tag archives

How to add bookmark javascript in IE and Firefox

Adding the "bookmark this page" javascript below will help to encourage return visits. Your visitor simply clicks on the link and a popup prompt will appear so they can add your site to their favorites list. [code] <script> /* bookmark site */ function bookmarksite(site) { if (document.all) { window.external.AddFavorite("http://www."+ site, site); } else if (window.sidebar && window.sidebar.addPanel) { window.sidebar.addPanel(site,"http://www."+ site,...