How to add a bookmark code in your high traffic website
Tuesday, August 18th, 2009Here’s how to add a bookmark code in your high traffic website:
1. Place the following script into your section in the page you need to use it:
<script type="text/javascript">
function bookmark_us(url, title){
if (window.sidebar) // firefox
window.sidebar.addPanel(title, url, "");
else if(window.opera && window.print){ // opera
var elem = document.createElement(’a’);
elem.setAttribute(’href’,url);
elem.setAttribute(’title’,title);
[...]


