NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Spojlery // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match http://torg.pl/* // @grant none // @require http://code.jquery.com/jquery-latest.js // ==/UserScript== (function() { 'use strict'; // Your code here... function podswietl(){ $(this).css('color', 'white'); } function zgas(){ $(this).css('color', 'black'); } $('.postcontent span').hover(podswietl, zgas); })();