This news site (The Guardian) has a small frame that displays in the bottom-right of the page, with code like this:
<div class="initially-off social-cta-overlay">
<div class="social-cta-overlay-content"></div>
</div>
I hid the internal contents of the inner div
because they're not important. I wrote a Greasemonkey script that uses JQuery to hide this box because it appears on every page:
// ==UserScript==
// @name hide-guardian-ad
// @namespace guardian
// @description Hides the Guardian social media frame
// @version 1
// @grant none
// ==/UserScript==
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
$(".social-cta-overlay").hide()
I installed the script, but nothing happens and the box is still there.