Sitenizin uygun yerine yerleştirdiğiniz takAşağıdaki kodlar sayesinde sayfanıza sık kullanılanlara ekle yada favorilere ekle linki ekleyebilirsiniz.
Favorilere - Sık Kullanılanlara Ekleme Kodu jquery
$(function() {
$('#bookmarkme').click(function() {
if (window.sidebar && window.sidebar.addPanel) { // Mozilla Firefox Bookmark
window.sidebar.addPanel(document.title, window.location.href, '');
} else if (window.external && ('AddFavorite' in 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;
} else { // webkit - safari/chrome
alert('Press ' + (navigator.userAgent.toLowerCase().indexOf('mac') != -1 ? 'Command/Cmd' : 'CTRL') + ' + D to bookmark this page.');
}
});
});
jquery ile çalıştığı için import ediyoruz.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
Bunu da sitenizin uygun bir yerine yerleştirin.
<a id="bookmarkme" href="#" rel="sidebar" title="bookmark this page">Favorilere Ekle</a>
<!--[if IE]><a href onClick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.sitem.com');" style="cursor:hand">
<span style="color:"#666666">Make Sitem Your Homepage!</span></a><![endif]-->
<a href="#" onClick="this.style.behavior='url(#default#homepage)'; this.setHomePage('https://www.somut.net');"> Ana Sayfam Yap</a>
İlk yorumu siz yazın !..