How to remove a "B" (bookmark) link from a menu line?
-
Hi,
I took over the site, astroclosets.com from another website designer, and I am still cleaning up some things, one of which is the floating “B” on the menu bar. There is nothing on the menu page that would indicate that there is a bookmarking capability.
Aha…I think I found the code responsible…
‘<script type=”text/javascript”>
jQuery(document).on(‘ready’, function(){
jQuery(‘body’).on(‘click’, ‘a.share-pinterest’, function(e){
e.preventDefault();// Load Pinterest Bookmarklet code
var s = document.createElement(“script”);
s.type = “text/javascript”;
s.src = window.location.protocol + “//assets.pinterest.com/js/pinmarklet.js?r=” + ( Math.random() * 99999999 );
var x = document.getElementsByTagName(“script”)[0];
x.parentNode.insertBefore(s, x);// Trigger Stats
var s = document.createElement(“script”);
s.type = “text/javascript”;
s.src = this + ( this.toString().indexOf( ‘?’ ) ? ‘&’ : ‘?’ ) + ‘js_only=1’;
var x = document.getElementsByTagName(“script”)[0];
x.parentNode.insertBefore(s, x);
});
});’Don’t know what “backticks” are, bt thought it might be single quote marks.
Thanks,
Steve
- The topic ‘How to remove a "B" (bookmark) link from a menu line?’ is closed to new replies.