Skip to content

Instantly share code, notes, and snippets.

@james
Created June 20, 2012 19:57
Show Gist options
  • Save james/2961842 to your computer and use it in GitHub Desktop.
Save james/2961842 to your computer and use it in GitHub Desktop.
Hide all gumtree adds that are all caps
// ==UserScript==
// @name Gumtree Shout Ban
// @namespace GumtreeShoutBan
// @description Hide all gumtree adds that are all caps
// @include http://www.gumtree.com/*
// ==/UserScript==
// a function that loads jQuery and calls a callback function when jQuery has finished loading
function addJQuery(callback) {
var script = document.createElement("script");
script.setAttribute("src", "http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js");
script.addEventListener('load', function() {
var script = document.createElement("script");
script.textContent = "(" + callback.toString() + ")();";
document.body.appendChild(script);
}, false);
document.body.appendChild(script);
}
// the guts of this userscript
function main() {
$.each($('.ad-title-text'), function() {if(!$(this).html().match(/[a-z]/)) {$(this).parents('.hlisting').hide()}})
}
// load jQuery and execute the main function
addJQuery(main);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment