a:visited .test { /* sneaky style */ }
a .test { color: red; } a:visited .test { color: green; }
$('a .test').each(function() { if ( $(this).css('color') == 'green' ) { console.log( $(this).parent().attr('href') ); } });
a:visited + .sneakydiv { /* ... */ }
a:visited .test { /* sneaky style */ }