Archive for February 27th, 2009
Link for Bookmark / Bookmark menggunakan link
Friday, February 27th, 2009Salam,
This is simple example using javascript to create a link for bookmark your website.
Ini merupakan contoh mudah membuat link untuk pengunjung bookmark laman web anda.
Paste this code in after
and before<script type="text/javascript">
function bookmark(address,sitename) {
if (window.sidebar) {
window.sidebar.addPanel(sitename, address,"");
} else if( document.all ) {
window.external.AddFavorite(address, sitename);
} else if( window.opera && window.print ) {
return true;
}
}
</script>
And paste this code for create the link.
< a href="#" onclick="bookmark('http://www.hujungjari.com/','Hujung Jari')">Bookmark our site!< /a>
