Posted by : ADMIN
Thursday, 28 June 2012
- This tutorial will show you How To Add Bookmark This Site Widget to Blogger. If visitors are interested with the content of your site, they will bookmark your blog/website. You can add a widget to make this bookmarking process more easier and with some style.
- Go to Blogger Dashboard --> Design --> Page Elements
- Click on Add a Gadget then select HTML/JavaScript Widget
- Copy the code shown below and paste it inside the widget.
<script type="text/javascript">
/***********************************************
* Bookmark site script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
* Shared by Alfian J. @ HOW-TO HOUSE www.place2how-to.com
***********************************************/
function bookmarksite(title,url){
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);
elem.setAttribute('rel','sidebar');
elem.click();
}
else if(document.all)// ie
window.external.AddFavorite(url, title);
}
</script>
<a href="javascript:bookmarksite('YOUR BLOG NAME', 'YOUR BLOG URL')"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhmFHJ08Q9_RSFwT_IYhvW_xLw296u_t-CuT9075dgEEp_ifgcCB4ZyYVYn0a4FV9L3vwvXbyy_c9KwQCmFmJWxj59P03ka3M3oaKqNtFgRnC8snuIdznGcPKCIZw6fY1AaJB0Cu17NnCw/s1600/bookmark-this-site.png" /></a>
/***********************************************
* Bookmark site script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
* Shared by Alfian J. @ HOW-TO HOUSE www.place2how-to.com
***********************************************/
function bookmarksite(title,url){
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);
elem.setAttribute('rel','sidebar');
elem.click();
}
else if(document.all)// ie
window.external.AddFavorite(url, title);
}
</script>
<a href="javascript:bookmarksite('YOUR BLOG NAME', 'YOUR BLOG URL')"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhmFHJ08Q9_RSFwT_IYhvW_xLw296u_t-CuT9075dgEEp_ifgcCB4ZyYVYn0a4FV9L3vwvXbyy_c9KwQCmFmJWxj59P03ka3M3oaKqNtFgRnC8snuIdznGcPKCIZw6fY1AaJB0Cu17NnCw/s1600/bookmark-this-site.png" /></a>
Post a Comment