I want to add to my website a script that allows bookmarking the page on click.
I have find a script for the major browser's excepte for chrome, anyone can help?
This is the script i use:
I have find a script for the major browser's excepte for chrome, anyone can help?
This is the script i use:
Code:
<script type="text/javascript">
$(document).ready(function() {
$("#bookmarkme").click(function() {
if (window.sidebar) { // Mozilla Firefox Bookmark
window.sidebar.addPanel(location.href,document.title,"");
} else if(window.external) { // IE Favorite
window.external.AddFavorite(location.href,document.title); }
else if(window.opera && window.print) { // Opera Hotlist
this.title=document.title;
return true;
}
});