/**/ function addBookmark(title, url) { if (window.sidebar) { // *firefox* window.sidebar.addPanel(title, url,""); } else if( document.all ) { //MSIE window.external.AddFavorite( url, title); } else { alert("We are sorry, it seems to us that your browser doesn't support this."); } } $(document).ready(function(){ $(".bookmark").click(function(){ addBookmark(document.title,window.location.href); return false; }); });