NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name ROS Webb- Search Results // @namespace http://tampermonkey.net/ // @version 1.0.3 // @author salience // @copyright 2021, salience (https://openuserjs.org/users/salience) // @license MIT // @match *http://sedvms1.otsrv.mtrltech.com/htbin/search.com* // @require https://code.jquery.com/jquery-3.5.1.slim.min.js // @grant none // ==/UserScript== $(function() { $('a').css({ 'color': '#039' }); $('a').each(function () { var element = $(this); element.click(function () { $('a.active').removeClass('active'); element.addClass('active'); $('a.visited').css({ 'color': '#939', 'fontWeight': 'normal' }); $('a.active').css({ 'color': '#039', 'fontWeight': 'bold' }); }); element.blur(function() { element.addClass('visited'); }); }); });