Code: Show/Hide // ==UserScript== // @name jQuery Example // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js // ==/UserScript== $(function() { $("td").each(function() { var hue = 'rgb(' + (Math.floor((256-199)*Math.random()) + 200) + ',' + (Math.floor((256-199)*Math.random()) + 200) + ',' + (Math.floor((256-199)*Math.random()) + 200) + ')'; $(this).css("background-color", hue); }); $("img").each(function() { $(this).css('transform', 'rotate(180deg)'); }); $("b a").text(function () { return $(this).text().replace("Cheese", "Cuck").replace("Mine GO BOOM", "Hitler"); }); }); |