Follow Simple 3 Steps.
-
Add Following code where you want to show the Bookmark Button.
Bookmark Me - Include jQuery File
-
Add Following JavaScript code at end of page.
$(document).ready(function() { $("#bookmarkmarkme").click(function() { /* Mozilla Firefox Bookmark */ if ('sidebar' in window && 'addPanel' in window.sidebar) { window.sidebar.addPanel(location.href,document.title,""); } else if( /*@cc_on!@*/false) { // IE Favorite window.external.AddFavorite(location.href,document.title); } else { // webkit - safari/chrome alert('Press ' + (navigator.userAgent.toLowerCase().indexOf('mac') != - 1 ? 'Command/Cmd' : 'CTRL') + ' + D to bookmark this page.'); } }); });