pemol117 / Spojlery

// ==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);
})();