Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save h1dd3nsn1p3r/7e2c7c2d2d53f96bec14556c133aa2c1 to your computer and use it in GitHub Desktop.
Save h1dd3nsn1p3r/7e2c7c2d2d53f96bec14556c133aa2c1 to your computer and use it in GitHub Desktop.
Remove Pinterest save pin button from specific image (Has class custom logo)
<script type="text/javascript">
var element = document.getElementsByClassName("custom-logo");
var iteration = element.length;
for( i=0; i<iteration; i++ ) {
element[i].setAttribute("data-pin-nopin", "true");
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment