Skip to content

Instantly share code, notes, and snippets.

@jpts
Last active December 4, 2016 16:53
Show Gist options
  • Save jpts/df205cdffc5a3a52c8474f5f8bd2d1a7 to your computer and use it in GitHub Desktop.
Save jpts/df205cdffc5a3a52c8474f5f8bd2d1a7 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Element14 community block lifter
// @namespace https://gist.github.com/jpts
// @updateURL https://gist.githubusercontent.com/jpts/df205cdffc5a3a52c8474f5f8bd2d1a7/raw/
// @version 1.1
// @author jpts
// @match *://www.element14.com/community/*
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js
// @grant none
// ==/UserScript==
$(document).ready(function() {
window.console.log("Element14 community block lifter");
// wait for rendering. probably a nicer way of doing this
$().delay(2000);
$("#jive-user-authentication-form-modal").remove();
$(".lb_overlay.js_lb_overlay").remove();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment